/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Jost', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Bootstrap overrides */
.container {
    position: relative;
}

/* Custom container for sections that need full width */
.container-fluid {
    padding: 0;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    flex-shrink: 0;
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
    display: block;
    background: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.5em;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #666;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #667eea;
}

/* Bootstrap navbar overrides */
.navbar-nav .nav-link {
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
    margin: 0 10px;
}

.navbar-nav .nav-link:hover {
    color: #667eea;
}

.navbar-nav {
    margin-bottom: 0px !important;
}

.nav-item {
    margin-bottom: 0px !important;
}

/* Mobile Navigation */
@media (max-width: 992px) {
    .navbar {
        padding: 10px 0;
    }

    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        position: relative;
    }

    .navbar-brand {
        margin-right: 0;
        flex-shrink: 0;
    }

    .navbar-toggler {
        border: none;
        padding: 4px 8px;
        margin-left: auto;
        order: 2;
        display: block !important;
        visibility: visible !important;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-toggler-icon {
        display: inline-block;
        width: 1.5em;
        height: 1.5em;
        vertical-align: middle;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%;
    }

    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        margin-top: 10px;
        order: 3;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1000;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 0px !important;
    }

    .navbar-nav .nav-item {
        width: 100%;
        margin-bottom: 0px !important;
    }

    .navbar-nav .nav-link {
        padding: 10px 15px;
        border-radius: 5px;
        text-align: center;
        margin: 0;
    }

    .navbar-nav .nav-link:hover {
        background: #f8f9fa;
    }

    .btn-primary {
        width: 100%;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 8px 0;
    }

    .navbar .container {
        padding: 0 15px;
    }

    .navbar-brand {
        flex-shrink: 0;
    }

    .navbar-toggler {
        border: none;
        padding: 4px 8px;
        margin-left: auto;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-collapse {
        margin-top: 15px;
        padding: 15px;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1000;
        background: white;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav .nav-link {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 5px 0;
    }

    .navbar .container {
        padding: 0 10px;
    }

    .navbar-brand img {
        height: 25px;
    }

    .navbar-toggler {
        padding: 2px 6px;
        display: block !important;
        visibility: visible !important;
    }

    .navbar-collapse {
        margin-top: 10px;
        padding: 10px;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1000;
        background: white;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
}

/* Force toggle button visibility */
@media (max-width: 991.98px) {
    .navbar-toggler {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Dropdown menu styling */
.dropdown-menu {
    border: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 10px 0;
    margin-top: 10px;
    background: white;
}

.dropdown-item {
    padding: 12px 20px;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 10px;
}

.dropdown-item:hover {
    color: #6a72d9;
    background: none;
}

.dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: 0.15em;
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

/* Bootstrap accordion overrides */
.accordion-button {
    background: transparent;
    border: none;
    box-shadow: none;
    font-weight: 500;
    color: #333;
    padding: 10px 0;
}

.accordion-button:not(.collapsed) {
    background: transparent;
    color: #667eea;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.accordion-body {
    padding: 0 0 20px 0;
    color: #666;
    line-height: 1.6;
    font-size: 14px;
    font-weight: 300;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 8px 24px;
    border-radius: 46px;
    font-weight: 400;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Jost', sans-serif;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-large {
    padding: 8px 30px;
    font-size: 17px;
}

/* Hero Section */
.hero {
    padding: 120px 0 20px;
    text-align: center;
    /* background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(to left, #78b3f8, #5d6ee6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1rem;
    color: #868686;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

.data-sources,
.data-destinations {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.source-item,
.dest-item {
    background: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: #333;
}

.central-hub {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.central-hub::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    bottom: 12px;
    right: 12px;
}

.hub-icon {
    color: #fff;
    font-weight: 700;
    font-size: 24px;
}

.web {
    display: block;
    width: 100%;
}

.mob {
    display: none;
}

/* Trusted Brands */
.trusted-brands {
    padding: 40px 0;
    text-align: center;
    background: #fff;
}

.trusted-text {
    font-size: 1.2rem;
    color: #999;
    margin-bottom: 30px;
    letter-spacing: 1px;
    font-weight: 500;
}

.trusted-brands-image {
    display: grid;
    grid-auto-flow: column;
    justify-items: center;
    width: 70%;
    margin: auto;
    gap: 20px;
}

.trusted-brands-image img {
    height: 40px;
    width: auto;
}

.brands-logos {
    display: flex;
    justify-content: center;
    gap: 60px;
    align-items: center;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    opacity: 0.7;
}

/* Stop Flying Blind Section */
.stop-flying-blind {
    padding: 60px 0;
    background: #f5f6fd;
    position: relative;
}

.bg-lg {
    position: absolute;
    top: 0;
    right: 0;
    width: 15%;
    z-index: 0;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.card {
    padding: 20px 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    margin-bottom: 15px;
}

.card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Data Unified Section */
.data-unified {
    padding: 30px 0;
    background: #1a1a1a;
    color: #fff;
}

.data-unified .section-title {
    color: #fff;
    margin-bottom: 10px;
    text-align: left;
    font-size: 2rem;
    line-height: 1.5;
}

.data-unified .section-description {
    color: #ccc;
    font-size: 1rem;
    font-weight: 100;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.data-cubes {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    position: relative;
}

.cube {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
    position: relative;
    animation: glow 2s ease-in-out infinite alternate;
}

.cube::after {
    content: '';
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 4px;
}

@keyframes glow {
    from {
        box-shadow: 0 0 5px rgba(102, 126, 234, 0.5);
    }

    to {
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.8);
    }
}

.popup-label {
    position: absolute;
    top: -30px;
    right: 20px;
    background: #fff;
    color: #333;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Deploy Infrastructure Section */
.deploy-infrastructure {
    padding: 30px 0 0px;
    /* background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%); */
}

.deploy-infrastructure .section-title {
    font-size: 2rem;
    line-height: 1.5;
}

.deploy-infrastructure .section-title span {
    color: #a2a2a2;
}

.step-section-color-1 {
    background: linear-gradient(90deg, #ffffff, #eae9ff 80%, #f9f9ff);
    /* margin-bottom: 40px; */
}

.step-section-color-2 {
    background: linear-gradient(90deg, #ffffff, #ffefef 30%, #f9f9ff);
    /* margin-bottom: 40px; */
}

.step-section-color-3 {
    background: linear-gradient(90deg, #ffffff, #edfffb 30%, #f9f9ff);
    /* margin-bottom: 40px; */
}

.step-section {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 50px 0;
    padding: 30px 0;
    margin: auto;
}

.step-reverse {
    grid-template-columns: 0.8fr 1fr;
}

.step-reverse .step-content {
    order: 2;
}

.step-reverse .step-visual {
    order: 1;
}

.step-content {
    padding: 20px 40px;
}

.step-tag {
    display: inline-block;
    background: #eeeefc;
    color: #473bab;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.675rem;
    font-weight: 400;
    margin-bottom: 20px;
    border: 1px solid #d3d0f9;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 9px;
    line-height: 1.2;
}

.step-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    font-weight: 300;
    width: 70%;
}

.step-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Data Window for Step 1 */
.data-window {
    width: 400px;
    height: 300px;
    background: linear-gradient(135deg, #e8eaf6 0%, #c5cae9 100%);
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.data-text {
    font-size: 4rem;
    font-weight: 800;
    color: #333;
    font-family: 'Courier New', monospace;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    opacity: 0.7;
}

.data-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.overlay-tag {
    position: absolute;
    background: white;
    padding: 8px 16px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #333;
}

.data-layer-tag {
    top: 20px;
    left: 20px;
}

.web-tag {
    top: 60px;
    right: 20px;
}

.mobile-tag {
    top: 100px;
    right: 20px;
}

.tag-icon {
    font-size: 1rem;
}

/* Laptop Visual for Step 2 */
.laptop-visual {
    position: relative;
    width: 400px;
    height: 300px;
}

.laptop-screen {
    width: 100%;
    height: 200px;
    background: #1a1a1a;
    border-radius: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.dashboard {
    width: 90%;
    height: 80%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
}

.chart {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 8px;
    position: relative;
}

.pie-chart {
    grid-column: 1;
    grid-row: 1;
    border-radius: 50%;
}

.bar-chart {
    grid-column: 2;
    grid-row: 1;
}

.line-chart {
    grid-column: 1 / -1;
    grid-row: 2;
}

.laptop-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.speed-tag {
    bottom: 20px;
    left: 20px;
}

.accuracy-tag {
    top: 20px;
    right: 20px;
}

.infra-card {
    text-align: center;
    padding: 40px 20px;
}

.infra-visual {
    position: relative;
    margin-bottom: 30px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.window {
    background: #f0f0f0;
    border: 2px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    font-weight: 700;
    color: #333;
    position: relative;
}

.spider-web {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: 2px solid #333;
    border-radius: 50%;
    background: radial-gradient(circle, transparent 30%, #333 30%);
}

.laptop-screen {
    width: 120px;
    height: 80px;
    background: #333;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.graph {
    width: 60px;
    height: 40px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 4px;
}

.circuit-board {
    width: 100px;
    height: 80px;
    background: #2a2a2a;
    border-radius: 8px;
    position: relative;
}

.circuit-board::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 40px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 4px;
}

/* Integrations */
.integrations {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
}

.integrations-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.integrations-text {
    text-align: left;
    width: 70%;
}

.integrations-text .section-title {
    text-align: left;
    font-size: 3rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

.section-description {
    font-size: 1rem;
    color: #666;
    font-weight: 300;
    margin-bottom: 10px;
    line-height: 1.6;
    width: 80%;
}

.integrations-cards {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.integration-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 60%;
    margin-left: auto;
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.shopify-card {
    background: linear-gradient(180deg, #ffffff 0%, #e8f5e8 100%);
}

.magento-card {
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8e0 100%);
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #858383;
    margin-bottom: 20px;
}

.card-logo {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shopify-logo {
    width: 80px;
    height: 80px;
    background: #96bf48;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 8px 25px rgba(150, 191, 72, 0.3);
    position: relative;
}

.shopify-logo::before {
    content: '🛍️';
    position: absolute;
    font-size: 1.5rem;
    top: -5px;
    right: -5px;
}

.magento-logo {
    width: 80px;
    height: 80px;
    background: #f46f25;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 8px 25px rgba(244, 111, 37, 0.3);
    position: relative;
}

.magento-logo::before {
    content: '🛒';
    position: absolute;
    font-size: 1.5rem;
    top: -5px;
    right: -5px;
}

.card-description {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.5;
    font-weight: 100;
    width: 60%;
}

.description-content {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}

.card-arrow {
    width: 32px;
    height: 32px;
}

.integration-card:hover .card-arrow {
    transform: translateX(3px);
}

/* Numbers Section */
.numbers {
    background: linear-gradient(90deg, #dfeafb, #eef5fe36, #eef5fe);
    padding: 60px 0;
}

.numbers .section-title {
    font-size: 2rem;
    color: #4e4c4c;
}

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

.number-card {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 13px;
    box-shadow: 0px 2px 5px 0px #cfd0d2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.number {
    font-size: 2rem;
    font-weight: 500;
    background: linear-gradient(to right, #78b3f8, #5d6ee6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.number-card p {
    color: #666;
    font-weight: 100;
    font-size: 13px;
}

/* Performance Marketers Section */
.performance-marketers {
    padding: 60px 0;
    background: #211C50;
    color: #fff;
    position: relative;
}

.performance-marketers .section-title {
    color: #fff;
    font-size: 2rem;
    line-height: 1.5;
}

.performance-marketers .card {
    background: #2B2467;
    color: #fff;
}

.performance-marketers .card h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
}

.performance-marketers .card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 200;
}

.performance-marketers .card .know-more {
    font-size: 1rem;
    font-weight: 100;
    color: white;
    text-decoration: none;
    margin-top: 10px;
}

.performance-marketers .card .know-more span {
    text-decoration: underline;
}

/* Integrations Platforms */
.integrations-platforms {
    padding: 0px;
    background: #f8f9fa;
}

.integrations-platforms .content-wrapper-2 {
    background: linear-gradient(90deg, #ffffff 30%, #fff4f4 48%, #ffffff);
    padding: 50px 0;
}

.integrations-platforms .section-title {
    text-align: center;
    margin: auto;
}

.integrations-platforms .section-description {
    font-size: 1rem;
    color: #666;
    font-weight: 300;
    line-height: 1.6;
    width: 55%;
    text-align: center;
    margin: auto;
    margin-top: 10px;
}

.platform-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

/* .platform-logo {
    background: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: #333;
    transition: transform 0.3s ease;
} */

.platform-logos {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: nowrap;
    overflow: hidden;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    padding: 10px;
    position: relative;
    width: 100%;
}

.platform-logos img {
    width: 50px;
    height: 50px;
    padding: 5px;
    background: white;
    box-shadow: 0 2px 5px 1px #b7b4b452;
    border-radius: 7px;
    flex-shrink: 0;
    margin-right: 20px;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.platform-logos:hover {
    animation-play-state: paused;
}

.platform-logo:hover {
    transform: translateY(-3px);
}

.logo-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    padding: 20px 0;
    margin-top: 10px;
}

.marquee-track {
    display: flex;
    gap: 40px;
    /* space between logos */
    animation: scroll 25s linear infinite;
}

.marquee-track img {
    width: 50px;
    height: 50px;
    padding: 5px;
    background: white;
    box-shadow: 0 2px 5px 1px #b7b4b452;
    border-radius: 7px;
}

.custom-track {
    max-width: 200px;
    height: 50px;
    padding: 5px 10px;
    background: white;
    box-shadow: 0 2px 5px 1px #b7b4b452;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    padding-right: 20px;
}

.custom-track img {
    width: 50px;
    height: 50px;
    background: none;
    box-shadow: none;
    border: none;
}

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

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

/* Compliance Section */
.compliance {
    padding: 60px 0;
    background: #1a1a1a;
    color: #fff;
}

.compliance .section-title {
    color: #fff;
    margin-bottom: 45px;
    font-size: 2rem;
    line-height: 1.5;
}

.compliance .card {
    background: #2a2a2a;
    color: #fff;
}

.compliance .card h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
}

.compliance .card p {
    color: #ccc;
    font-size: 1rem;
    font-weight: 100;
}

/* FAQ Section */
.faq {
    padding: 60px 0 0;
    background: #fff;
}

.faq .section-title {
    text-align: left;
    font-size: 2rem;
}

.faq-list {
    margin: 0 auto;
    padding: 0px 50px;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    cursor: pointer;
    font-weight: 500;
    color: #333;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #667eea;
}

.faq-answer {
    padding: 0 0 20px 0;
    color: #666;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 14px;
    font-weight: 300;
}

.faq .accordion-button {
    font-size: 1.2rem;
    color: black;
    padding-left: 0;
}

.faq .accordion-body {
    font-size: 1rem;
    font-weight: 300;
}

/* Shopify Page Styles */
.hero-shopify {
    padding: 60px 0 0;
    /* background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%); */
}

.hero-title-shopify {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle-shopify {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
    font-weight: 100;
}

.hero-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #333;
    font-weight: 100;
}

.checkmark {
    color: #667eea;
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    padding: 12px 24px;
    border-radius: 46px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Jost', sans-serif;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.arrow {
    margin-left: 10px;
    font-size: 1.1rem;
}

.hero-visual {
    position: relative;
    text-align: center;
}

.speech-bubble {
    position: absolute;
    background: white;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.speech-bubble-1 {
    top: 20%;
    right: 10%;
}

.speech-bubble-2 {
    bottom: 30%;
    left: 10%;
}

/* Bleeding Money Section */
.bleeding-money {
    padding: 0px;
    background: radial-gradient(#eae6fa 0%, transparent 35%);
}

.bleeding-money .section-title {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 60px;
    color: #333;
}

.money-visual {
    position: relative;
    /* max-width: 600px; */
    margin: 0 auto;
}

.shopify-drops .section-title {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #333;
}

.shopify-drops .section-description {
    margin: auto;
}


.shopify-drops .content-margin {
    margin-top: 3rem !important;
}

.shopify-drops .content-padding {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.problem-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.problem-bubble {
    position: absolute;
    background: #ff6b6b;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    max-width: 200px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.bubble-1 {
    top: 10%;
    left: 5%;
}

.bubble-2 {
    top: 20%;
    right: 5%;
}

.bubble-3 {
    top: 40%;
    left: 0%;
}

.bubble-4 {
    top: 50%;
    right: 0%;
}

.bubble-5 {
    bottom: 30%;
    left: 10%;
}

.bubble-6 {
    bottom: 20%;
    right: 10%;
}

/* Shopify Drops Section */
.shopify-drops {
    padding: 0px 0px 40px 0px;
    background: linear-gradient(0deg, #ebf2fd, transparent);
}

.comparison-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
}

.platform-logo {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.comparison-card h3 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #333;
    margin: 0;
}

.comparison-card hr {
    color: #ececec;
    opacity: 1;
    border: 1px solid;
}

.comparison-card .btn-primary {
    width: 100%;
    padding: 7px;
}

.problems {
    border: 5px solid #a2a0a061;
}

.solutions {
    border: 5px solid #dfdefa;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.comparison-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
}

.icon-x {
    color: #ff6b6b;
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2rem;
    margin-top: -5px;
}

.icon-check {
    color: #51cf66;
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Power Up Section */
.power-up {
    padding: 80px 0;
    background: #fff;
}

.power-up .section-title {
    line-height: 1.5;
}

.feature-card {
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    height: 100%;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    width: 50px;
    height: 50px;
}

.feature-card p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

/* Brands Gain Section */
.brands-gain {
    padding: 60px 0;
    background: #1a1a1a;
    color: white;
}

.brands-gain .section-title {
    color: white;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 40px;
}

.metric-card {
    text-align: center;
    padding: 25px 20px;
    background: #252525;
    border-radius: 16px;
    margin-bottom: 20px;
}

.metric-number {
    font-size: 3rem;
    font-weight: 500;
    color: white;
    margin-bottom: 10px;
}

.metric-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

/* Why Trust Us Section */
.why-trust {
    padding: 40px 0;
    background: #fff;
}

.why-trust .section-title {
    font-size: 2rem;
}

.trust-points {
    margin-top: 40px;
}

.trust-point {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #333;
}

.trust-point .checkmark {
    color: #51cf66;
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2rem;
}

/* CTA Shopify Section */
.cta-shopify {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-shopify .cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: #333;
}

.cta-shopify .cta-description {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-shopify .cta-background-icon {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    opacity: 0.1;
    z-index: 1;
}

.cta-shopify .cta-background-icon img {
    width: 200px;
    height: 200px;
}

/* CTA Section */
.cta {
    padding: 70px 0;
    background: linear-gradient(359deg, #84aeee 0%, #ffffff 35%);
    position: relative;
    overflow: hidden;
}

.cta-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.cta-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    max-width: 40%;
    margin-right: auto;
    font-weight: 300;
}

.cta-background-icon {
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translateY(-60%);
    color: rgba(102, 126, 234, 0.1);
    font-weight: 700;
    z-index: 1;
    width: 20%;
}

.cta .btn-secondary {
    padding: 5px 30px;
    margin-left: 5px;
}

/* Event IQ Page Styles */
.hero-eventiq {
    padding: 130px 0 0;
    /* background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%); */
}

.hero-title-eventiq {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle-eventiq {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    width: 80%;
    margin: auto;
    margin-bottom: 20px;
}

.hero-eventiq .hero-buttons {
    justify-content: center;
}

.hero-eventiq .highlight-2 {
    background: linear-gradient(to right, #447acd, #10cca2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-visual-eventiq {
    text-align: center;
}

/* Data Flow Diagram */
.data-flow {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
}

.data-flow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, #ddd 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.data-flow-diagram {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.data-sources,
.data-destinations {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.source-card,
.dest-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.source-card:hover,
.dest-card:hover {
    transform: translateY(-5px);
}

.source-icon,
.dest-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    color: white;
}

.central-hub {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 40px;
    position: relative;
}

.hub-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    position: relative;
}

.hub-icon::after {
    content: '';
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.hub-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

/* Powerful Features Section */
.powerful-features {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
    position: relative;
}

.powerful-features .section-title {
    color: white;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 20px;
    text-align: left;
}

.powerful-features .section-description {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 60px;
    max-width: 50%;
}

.feature-block {
    height: 100%;
    transition: transform 0.3s ease;
    display: flex;
    align-items: self-start;
    padding: 15px 0;
    gap: 15px;
    width: 70%;
}

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

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    width: 45px;
    height: 45px;
}

.feature-block h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.feature-block p {
    color: #ccc;
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 100;
}

/* Tailored Solutions Section */
.tailored-solutions {
    padding: 60px 0;
    background: white;
}

.tailored-solutions .section-title {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 15px;
    text-align: center;
}

.tailored-solutions .section-description {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 20px;
    text-align: center;
    max-width: 50%;
    margin: auto;
}

.tailored-solutions .accordion-button {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 15px;
    text-align: left;
    color: black;
}

.team-image {
    text-align: center;
    padding: 20px;
    border-radius: 16px;
    transition: background 0.3s ease;
}

.team-image img {
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.team-image img:hover {
    transform: scale(1.02);
}

/* Mobile Plain Structure Styles */
.mobile-plain-structure {
    display: none;
}

.mobile-feature-item {
    margin-bottom: 3rem;
    text-align: center;
}

.mobile-feature-image {
    margin-bottom: 1.5rem;
}

.mobile-feature-image img {
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.mobile-feature-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.mobile-feature-content .role-benefits {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.role-benefits {
    list-style: none;
    padding: 0;
}

.role-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #333;
}

.role-benefits li .checkmark img {
    width: 15px;
    margin-top: -5px;
}


/* Why Choose Event IQ Section */
.why-choose-eventiq {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
}

.why-choose-eventiq .section-title {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 15px;
    text-align: center;
}

.why-choose-eventiq .section-description {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 20px;
    text-align: center;
    max-width: 50%;
    margin: auto;
}

.benefit-card {
    background: white;
    padding: 20px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgb(0 0 0 / 0%);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.benefit-icon {
    margin-bottom: 20px;
}

.benefit-icon img {
    width: 50px;
    height: 50px;
}

.benefit-card h3 {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}

.benefit-card p {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
    width: 70%;
    margin-bottom: 0;
}

/* CTA Event IQ Section */
.cta-eventiq {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-eventiq .cta-title {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.cta-eventiq .cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-eventiq .btn-secondary {
    background: white;
    color: #667eea;
    border: 2px solid white;
}

.cta-eventiq .btn-secondary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* Ingest ID Page Styles */
.hero-ingest-id {
    padding: 140px 0 0;
    /* background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%); */
}


.hero-ingest-id .highlight-2 {
    background: linear-gradient(to right, #447acd, #10cca2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}


.hero-title-ingest-id {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.2;
    text-align: center;
}

.hero-subtitle-ingest-id {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    width: 70%;
    text-align: center;
    margin: auto;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-ingest-id .hero-buttons {
    justify-content: center;
    margin-bottom: 30px;
}

.customer-journey-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
}

.journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 120px;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.step-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.journey-arrow {
    font-size: 2rem;
    color: #667eea;
    font-weight: bold;
}

/* .platform-logos {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
} */

/* .platform-logos img { */
/* height: 30px; */
/* opacity: 0.7;
    transition: opacity 0.3s ease; */
/* } */

/* .platform-logos img:hover {
    opacity: 1;
} */

/* Why Ingest ID Section */
.why-ingest-id {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
    position: relative;
}

.why-ingest-id::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: url('img/ingest-labs-bg.png') no-repeat center;
    background-size: contain;
    opacity: 0.1;
    transform: translateY(-50%);
}

.why-ingest-id .section-title {
    color: white;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: left;
}

.why-ingest-id .section-description {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 40px;
    width: 40%;
}

.feature-card-ingest {
    height: 100%;
    transition: transform 0.3s ease;
    display: flex;
    align-items: self-start;
    padding: 15px 0;
    gap: 15px;
    width: 70%;
}

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

.feature-icon-ingest {
    margin-bottom: 20px;
}

.feature-icon-ingest img {
    width: 45px;
    height: 45px;
}

.feature-card-ingest h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.feature-card-ingest p {
    color: #ccc;
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 100;
}

/* Drive Results Section */
.drive-results {
    padding: 50px 0;
    background: #f6f6fe;
    ;
}

.drive-results .section-title {
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.drive-results .section-description {
    color: #666;
    font-size: 1rem;
    width: 50%;
    text-align: center;
    margin: auto;
    margin-bottom: 40px;
}

.role-card {
    background: white;
    padding: 20px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgb(0 0 0 / 0%);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.role-icon {
    margin-bottom: 20px;
}

.role-icon img {
    width: 50px;
    height: 50px;
}

.role-card h3 {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}

.role-card p {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
    width: 70%;
    margin-bottom: 0;
}

/* Seamless Setup Section */
.seamless-setup {
    padding: 80px 0;
    /* background: #f8f9fa; */
}

.seamless-setup .section-title {
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.seamless-setup .section-description {
    color: #666;
    font-size: 1rem;
    width: 50%;
    text-align: center;
    margin: auto;
    margin-bottom: 40px;
}

.seamless-setup .step-content {
    padding: 0;
}

.setup-steps {
    margin-top: 40px;
}

.setup-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 20px;
}

.step-number {
    width: 20px;
    height: 20px;
    background: #e5effc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3d3d3e;
    font-size: 0.6rem;
    font-weight: 500;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 0.9rem;
    font-weight: 100;
}

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

.setup-visual img {
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Compatible Platforms Section */
.compatible-platforms {
    padding: 60px 0;
    background: linear-gradient(45deg, #ffffff, #f5f8fe, #ffffff);
    margin: 20px 0;
}

.platform-logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.platform-logos-row img {
    height: 40px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.platform-logos-row img:hover {
    opacity: 1;
}

/* Trusted By Section */
.trusted-by {
    padding: 60px 0;
    background: #f8f9fa;
}

.trusted-by .section-title {
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.trusted-by .section-description {
    color: #666;
    font-size: 1rem;
    width: 50%;
    text-align: center;
    margin: auto;
    margin-bottom: 40px;
}

.testimonial-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.testimonial-text {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    color: #979696;
    font-size: 0.8rem;
    font-weight: 100;
}

/* CTA Ingest ID Section */
.cta-ingest-id {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    position: relative;
}

.cta-ingest-id::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: url('img/ingest-labs-bg.png') no-repeat center;
    background-size: contain;
    opacity: 0.1;
}

.cta-ingest-id .cta-title {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.cta-ingest-id .cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-ingest-id .btn-secondary {
    background: white;
    color: #667eea;
    border: 2px solid white;
}

.cta-ingest-id .btn-secondary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 40px 0 20px;
}

.footer .logo-icon {
    height: 30px;
    margin-left: -5px;
}

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.footer-tagline {
    color: #ccc;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 100;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    gap: 20px;
}

.social-link:hover {
    color: #667eea;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr 3fr;
    gap: 40px;
}

.footer-column h4 {
    margin-bottom: 20px;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
}

.footer-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 5px;
    transition: color 0.3s ease;
    font-size: 13px;
    font-weight: 100;
}

.footer-column a:hover {
    color: #667eea;
}

.footer-column p {
    color: #ccc;
    margin-bottom: 10px;
    line-height: 1.5;
    display: flex;
    align-items: self-start;
    gap: 10px;
    font-size: 13px;
    font-weight: 100;
}

.footer-column p img {
    width: 17px;
    margin-top: 1px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 12px;
    font-weight: 100;
}

.footer-legal a:hover {
    color: #667eea;
}

.footer-bottom p {
    font-size: 12px;
    font-weight: 100;
}

/* ===== INGEST IQ PAGE STYLES ===== */

/* Hero Section - Ingest IQ */
.hero-ingest-iq {
    /* background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%); */
    padding: 140px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-ingest-iq .highlight-2 {
    background: linear-gradient(to right, #447acd, #10cca2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.hero-title-ingest-iq {
    font-size: 2rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.hero-subtitle-ingest-iq {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    width: 60%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Key Metrics Section - Ingest IQ */
.key-metrics-ingest-iq {
    padding: 80px 0;
    background: #f8f9ff;
    position: relative;
}

.metrics-grid-ingest-iq {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.metrics-grid-ingest-iq::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #7453ac, transparent);
    z-index: 1;
}

.metric-card-ingest-iq {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(116, 83, 172, 0.1);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card-ingest-iq:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(116, 83, 172, 0.2);
}

.metric-card-ingest-iq h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #7453ac;
    margin-bottom: 0.5rem;
}

.metric-card-ingest-iq p {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Cookie Apocalypse Section - Ingest IQ */
.cookie-apocalypse-ingest-iq {
    padding: 40px 0;
    background: #f5f6fd;
    position: relative;
}

.problem-card-ingest-iq {
    background: white;
    padding: 20px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgb(0 0 0 / 0%);
    height: 100%;
    transition: transform 0.3s ease;
    text-align: left;
}

.problem-icon-ingest-iq {
    margin-bottom: 20px;
}

.problem-icon-ingest-iq img {
    width: 40px;
    height: 40px;
}

.problem-card-ingest-iq h4 {
    font-size: 1rem;
    font-weight: 500;
    color: #49494a;
    margin-bottom: 10px;
}

.problem-card-ingest-iq p {
    font-size: 0.9rem;
    font-weight: 100;
}

/* Server-Side Tracking Section - Ingest IQ */
.server-side-tracking-ingest-iq {
    padding: 60px 0;
    background: #1a1a1a;
    color: white;
    position: relative;
}

.server-side-tracking-ingest-iq .section-title {
    color: white;
    margin-bottom: 3rem;
    text-align: left;
}

.features-list-ingest-iq {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-item-ingest-iq {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    transition: background 0.3s ea
}


.feature-icon-ingest-iq {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-ingest-iq img {
    width: 50px;
    height: 50px;
}

.feature-item-ingest-iq p {
    font-size: 1rem;
    color: #e0e0e0;
    margin: 0;
    font-weight: 500;
    width: 60%;
}

.tracking-visual-ingest-iq {
    text-align: center;
}

/* Trusted Brands Section - Ingest IQ */
.trusted-brands-ingest-iq {
    padding: 80px 0;
    background: white;
}

.trusted-title {
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3rem;
}

.brands-logos-ingest-iq {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.brands-logos-ingest-iq img {
    width: 70%;
    transition: opacity 0.3s ease;
}

/* All Features Section - Ingest IQ */
.all-features-ingest-iq {
    padding: 40px 0;
    background: white;
}

.all-features-ingest-iq .section-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.all-features-ingest-iq .section-description {
    font-size: 1rem;
    text-align: center;
    margin: auto;
    margin-bottom: 30px;
}

.features-accordion-ingest-iq .accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.features-accordion-ingest-iq .accordion-button {
    background: white;
    border: none;
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    box-shadow: none;
}

.features-accordion-ingest-iq .accordion-button:not(.collapsed) {
    background: #f8f9ff;
    color: #7453ac;
}

.features-accordion-ingest-iq .accordion-button:focus {
    box-shadow: none;
    border-color: #7453ac;
}

.features-accordion-ingest-iq .accordion-body {
    padding: 0 1.5rem 1.5rem;
    background: #f8f9ff;
}

.features-accordion-ingest-iq .accordion-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-accordion-ingest-iq .accordion-body li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.features-accordion-ingest-iq .accordion-body li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00d4aa;
    font-weight: bold;
}

.features-visual-ingest-iq {
    text-align: center;
}

.features-visual-ingest-iq img {
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.performance-marketers ul {
    list-style: none;
    margin-block-start: 0em;
    margin-block-end: 0em;
    padding-inline-start: 0px;
}

.performance-marketers ul li {
    font-size: 0.8rem;
    font-weight: 100;
    line-height: 2;
}

.performance-marketers ul li img {
    margin-right: 10px;
    width: 15px;
    height: 15px;
    margin-top: -4px;
}

/* Use Cases Section - Ingest IQ */
.use-cases-section-ingest-iq {
    margin-top: 80px;
    padding: 60px 0;
    background: #7453ac;
    border-radius: 24px;
}

.use-cases-section-ingest-iq .section-title {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

.use-case-card-ingest-iq {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case-card-ingest-iq:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.use-case-icon-ingest-iq {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #7453ac, #a29bfe);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.use-case-icon-ingest-iq img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.use-case-card-ingest-iq h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.use-case-card-ingest-iq ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.use-case-card-ingest-iq li {
    padding: 0.25rem 0;
    color: #666;
    font-size: 0.9rem;
}

/* Integrations Section - Ingest IQ */
.integrations-ingest-iq {
    padding: 60px 0;
    background: white;
}

.integrations-list-ingest-iq {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 60vw;
    margin: auto;
}

.integration-group-ingest-iq {}

.integration-category-ingest-iq {
    padding: 1rem;
    background: #f8f9ff;
    border-radius: 16px;
    height: 100%;
    width: max-content;
}

.integration-category-ingest-iq h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.integration-logos-ingest-iq {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
}

.integration-logos-ingest-iq img {
    height: 65px;
}

.integration-logos-ingest-iq img:hover {
    opacity: 1;
}

/* Comparison Table Section - Ingest IQ */
.comparison-table-ingest-iq {
    padding: 50px 0;
}

.comparison-table-ingest-iq .section-title {
    font-size: 1.5rem;
    margin-bottom: 50px;
}

.comparison-group-ingest-iq {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    width: 80%;
    margin: auto;
    padding: 35px 0;
    background: radial-gradient(circle at 38% 51%, #f4f1fe38 8%, #ebf1fd 0%, transparent 31%);
}

.comparison-group-ingest-iq {
    text-align: center;
}

.comparison-group-item-ingest-iq p img {
    width: 15px;
    margin-top: -5px;
    margin-right: 5px;
}

.comparison-group-item-ingest-iq {
    flex: 1;
    padding: 25px;
}

.active {
    border: 4px solid #f1f0fb;
    padding: 20px;
    border-radius: 25px;
    background: white;
}

.comparison-group-item-ingest-iq h3 {
    font-size: 1rem;
    font-weight: 600;
    border-bottom: 1px solid #ececec;
    padding: 10px;
    margin: 0;
    padding-bottom: 15px;
}

.comparison-group-item-ingest-iq p:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.comparison-group-item-ingest-iq p {
    font-size: 0.9rem;
    border-bottom: 1px solid #ececec;
    padding: 10px;
    margin-bottom: 0;
}

.comparison-table-content-ingest-iq {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.comparison-table-content-ingest-iq thead {
    background: #7453ac;
    color: white;
}

.comparison-table-content-ingest-iq th {
    border: none;
    padding: 1.5rem 1rem;
    font-weight: 600;
    text-align: center;
}

.comparison-table-content-ingest-iq .highlight-column {
    background: #a29bfe !important;
}

.comparison-table-content-ingest-iq td {
    border: none;
    padding: 1.5rem 1rem;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid #f0f0f0;
}

.comparison-table-content-ingest-iq .highlight-cell {
    background: #f8f9ff;
    color: #7453ac;
    font-weight: 600;
}

.comparison-table-content-ingest-iq tbody tr:hover {
    background: #f8f9ff;
}

/* Enterprise Security Section - Ingest IQ */
.enterprise-security-ingest-iq {
    padding: 40px 0;
    background: #1a1a1a;
    color: white;
}

.enterprise-security-ingest-iq .section-title {
    color: white;
    margin-bottom: 3rem;
}

.enterprise-security-ingest-iq .card {
    background: #252525;
    padding: 5px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.enterprise-security-ingest-iq .card .card-icon {
    margin-bottom: 0;
}

.enterprise-security-ingest-iq .card h3 {
    color: white;
    margin-bottom: 0;
    ;
    text-align: left;
}

.security-card-ingest-iq {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: transform 0.3s ease, background 0.3s ease;
    height: 100%;
}

.security-card-ingest-iq:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.security-icon-ingest-iq {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #00d4aa, #00b894);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-icon-ingest-iq img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.security-card-ingest-iq h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0;
}

/* FAQ Section - Ingest IQ */
.faq-ingest-iq {
    padding: 100px 0;
    background: white;
}

.faq-ingest-iq .accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-ingest-iq .accordion-button {
    background: white;
    border: none;
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    box-shadow: none;
}

.faq-ingest-iq .accordion-button:not(.collapsed) {
    background: #f8f9ff;
    color: #7453ac;
}

.faq-ingest-iq .accordion-button:focus {
    box-shadow: none;
    border-color: #7453ac;
}

.faq-ingest-iq .accordion-body {
    padding: 0 1.5rem 1.5rem;
    background: #f8f9ff;
    color: #666;
    line-height: 1.6;
}

.hero-ingest-iq .customer-journey-diagram {
    margin: 3rem !important;
}

.all-features-ingest-iq .column-padding {
    margin: 3rem !important;
}

.ingest-iq .performance-marketers .card {
    background: #2b2467;
    color: #fff;
}


.ingest-iq .performance-marketers {
    background: #211C50;
    color: #fff;
}




/* Partners Page Styles */
.hero-partners {
    padding: 130px 0 40px;
    text-align: center;
}

.hero-partners .hero-title-partners {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-partners .hero-subtitle-partners {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    width: 80%;
    margin: auto;
    margin-bottom: 20px;
}

.hero-partners .highlight-2 {
    background: linear-gradient(to right, #447acd, #10cca2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partners-compatible-platforms {
    padding: 60px 0;
    background: linear-gradient(45deg, #ffffff, #f5f8fe, #ffffff);
    margin: 20px 0;
}

.partners-compatible-platforms .platform-logos-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.partners-compatible-platforms .platform-logos-row img {
    height: 30px;
    opacity: 1;
    ;
}

.partners-compatible-platforms .platform-logos-row .partner-logo-item {
    padding: 15px 30px;
    background: white;
    box-shadow: 1px 2px 9px #e9e9e9;
    border-radius: 15px;
}


/* About Page Styles */
.hero-about {
    padding: 130px 0 40px;
    text-align: center;
}

.hero-title-about {
    font-size: 2rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle-about {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    width: 80%;
    margin: auto;
    margin-bottom: 20px;
}

.hero-about .highlight-2 {
    background: linear-gradient(to right, #447acd, #10cca2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-about .hero-buttons {
    gap: 0px;
    align-items: center;
}

.our-values {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
}

.our-values .section-title {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 15px;
    text-align: center;
}

.our-values .section-description {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 20px;
    text-align: center;
    max-width: 50%;
    margin: auto;
}

.value-card {
    background: white;
    padding: 20px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgb(0 0 0 / 0%);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.value-icon {
    margin-bottom: 20px;
}

.value-icon img {
    width: 40px;
    height: 40px;
}

.value-card h4 {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}

.value-card p {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
    width: 90%;
    margin-bottom: 0;
}

.our-team {
    padding: 80px 0;
    background: #ffffff;
}

.our-team .section-title {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 15px;
    text-align: center;
}

.our-team .section-description {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 20px;
    text-align: center;
    max-width: 70%;
    margin: auto;
    margin-bottom: 40px;
}

.team-story {
    background: #f8f9ff;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: left;
}

.story-text {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.story-text:last-child {
    margin-bottom: 0;
}

.story-text strong {
    color: #2c3e50;
    font-weight: 600;
}

.team-member {
    text-align: center;
    padding: 1.5rem;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: #7453ac;
}

.member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #f8f9ff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #7453ac;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.member-bio {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.member-links {
    margin-top: 1rem;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0077b5;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid #0077b5;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.linkedin-link:hover {
    background-color: #0077b5;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.linkedin-link img {
    filter: none;
    transition: filter 0.3s ease;
}

.linkedin-link:hover img {
    filter: brightness(0) invert(1);
}


/* Contact Page Styles */
.hero-contact {
    padding: 130px 0 40px;
    text-align: center;
}

.hero-title-contact {
    font-size: 2rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle-contact {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    width: 80%;
    margin: auto;
    margin-bottom: 20px;
}

.hero-contact .highlight-2 {
    background: linear-gradient(to right, #447acd, #10cca2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-section {
    padding: 20px 0 40px 0;
    background: #ffffff;
}

.contact-info .section-title {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 15px;
    text-align: left;
}

.contact-info .section-description {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 30px;
    text-align: left;
    color: #666;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9ff;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: #6c757d;
    margin-bottom: 0.25rem;
    line-height: 1.5;
}

.contact-form-container {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.contact-form .form-label {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #7453ac;
    box-shadow: 0 0 0 0.2rem rgba(116, 83, 172, 0.25);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-check-label {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
}

.privacy-link {
    color: #7453ac;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.map-section {
    padding: 0;
}

.map-section .section-title {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    padding-top: 3rem;
    color: #2c3e50;
}

.map-container {
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
}


/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

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

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

    .hero-buttons {
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

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

    .hero-subtitle {
        font-size: 1.125rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .btn-primary {
        float: left;
        margin-bottom: 20px;
        width: auto;
    }

    .trusted-brands img {
        max-width: 100%;
    }

    .card {
        margin-bottom: 20px;
    }

    .step-section {
        padding: 40px 0;
    }

    .step-title {
        font-size: 1.25rem;
    }

    .step-description {
        font-size: 1rem;
    }

    .numbers .row {
        flex-direction: column;
        align-items: center;
    }

    .number-card {
        margin-bottom: 20px;
        width: 100%;
        max-width: 300px;
    }

    .integrations .row {
        flex-direction: column;
    }

    .integrations .col-lg-6:first-child {
        margin-bottom: 30px;
    }

    .integrations .col-lg-6:last-child {
        text-align: center;
    }

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

    .footer .col-lg-4,
    .footer .col-lg-2 {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
        padding: 0 15px;
    }

    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }

    .nav-menu {
        gap: 20px;
    }

    .hero {
        padding: 90px 0 60px;
    }

    .hero .hero-title br {
        display: none;
    }

    .hero .hero-subtitle br {
        display: none;
    }

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

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .web {
        display: none;
    }

    .mob {
        display: block;
        width: 100%;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }

    .section-description {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: self-start;
        gap: 0px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .hero-diagram {
        flex-direction: column;
        gap: 20px;
    }

    .trusted-brands {
        padding: 40px 0;
    }

    .trusted-brands-image img {
        height: auto;
        width: auto;
    }

    .stop-flying-blind,
    .performance-marketers,
    .compliance {
        padding: 20px 0;
    }

    .card {
        margin-bottom: 20px;
        padding: 20px;
    }

    .card h3 {
        font-size: 1.25rem;
    }

    .card p {
        font-size: 0.9rem;
    }

    .data-unified {
        padding: 50px 20px;
    }

    .data-unified .row {
        flex-direction: column-reverse;
    }

    .data-unified .col-lg-6:first-child {
        margin-top: 30px;
    }

    .visual-content {
        margin-bottom: 20px;
    }

    .deploy-infrastructure {
        padding: 50px 0;
    }

    .step-section {
        grid-template-columns: 1fr;
        gap: 5px;
        margin: 40px 0;
        padding: 30px 0;
        padding: 25px 15px !important;
    }

    .step-section .row {
        flex-direction: column;
    }

    .step-section .col-lg-6:first-child {
        margin-bottom: 20px;
    }

    .step-reverse {
        grid-template-columns: 1fr;
    }

    .step-title {
        font-size: 1.25rem;
    }

    .step-description {
        font-size: 1rem;
    }

    .integrations {
        padding: 50px 0;
    }

    .integrations .row {
        flex-direction: column;
    }

    .integrations .col-lg-6:first-child {
        margin-bottom: 30px;
        text-align: center;
    }

    .integrations .col-lg-6:last-child {
        text-align: center;
    }

    .integrations-content {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .integrations-text {
        text-align: center;
        width: 100%;
        margin-bottom: 10px;
    }

    .integrations-text .section-title {
        text-align: left;
    }

    .integrations-text .section-description {
        text-align: left;
        font-size: 1rem;
    }

    .integration-card {
        margin-bottom: 20px;
        width: 100%;
    }

    .integration-card .card-description {
        font-size: 1rem;
    }

    .numbers {
        padding: 50px 0;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .responsive-numbers {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px !important;
        display: grid !important;
    }

    .numbers .row {
        flex-direction: column;
        align-items: center;
    }

    .number-card {
        margin-bottom: 5px;
        width: 100%;
        text-align: left;
        padding: 15px 20px;
        height: 150px;
        justify-content: normal;
    }

    .responsive-numbers .number-card:nth-child(1) {
        grid-column: span 2;
        width: 100%;
        max-width: initial;
        grid-column: span 2;
        width: 100%;
        max-width: initial;
        padding: 5px 20px;
        display: flex;
        align-items: center;
        flex-direction: row;
        gap: 12px;
        text-align: left;
        justify-content: flex-start;
        height: 100px;
    }

    .number-card p {
        font-size: 1.3rem;
        margin: 0;
    }

    .number {
        font-size: 2rem;
    }

    .number-label {
        font-size: 0.9rem;
    }

    .numbers .section-title {
        font-size: 1rem;
        color: #858383;
        margin-bottom: 30px;
    }

    .integrations-platforms {
        padding: 0px;
    }

    .marquee-track {
        animation: scroll 10s linear infinite;
    }

    .faq {
        padding: 50px 0;
    }

    .accordion-button {
        font-size: 0.9rem;
        padding: 15px;
    }

    .accordion-body {
        font-size: 0.85rem;
    }

    .cta {
        padding: 50px 0;
        text-align: center;
    }

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

    .cta-description {
        font-size: 1rem;
        text-align: center;
        max-width: 80%;
        margin: auto;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
    }

    .cta .btn-primary {
        float: none;
        margin-top: 30px;
    }

    .footer {
        padding: 40px 0 20px;
    }

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

    .footer .col-lg-4,
    .footer .col-lg-2 {
        margin-bottom: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .step-reverse .step-content {
        order: 1;
    }

    .step-reverse .step-visual {
        order: 2;
    }

    .data-window {
        width: 100%;
        max-width: 350px;
        height: 250px;
    }

    .laptop-visual {
        width: 100%;
        max-width: 350px;
        height: 250px;
    }

    .step-title {
        font-size: 1.5rem;
    }

    .step-description {
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .cta-background-icon {
        width: 40%;
        top: 0%;
        right: -15%;
    }

    .integrations-platforms .section-description {
        width: 90%;
    }

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

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

    .navbar-nav .btn-primary {
        float: none;
    }

    .navbar-nav .nav-item:last-child {
        text-align: center;
    }

    .performance-marketers .section-title {
        width: 80%;
        margin: auto;
        margin-bottom: 20px;
    }

    .performance-marketers .section-title br {
        display: none;
    }

    .hero-title-shopify {
        padding: 40px 0 0;
    }

    .bleeding-money {
        padding-top: 0px;
    }

    .bleeding-money .section-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .shopify-drops .section-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .shopify-drops .content-margin {
        margin-top: 1rem !important;
    }

    .shopify-drops .content-padding {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .power-up {
        padding: 2rem 0 2rem;
    }

    .power-up .section-title {
        font-size: 1.5rem;
    }

    .feature-card {
        padding: 15px;
    }

    .feature-icon {
        margin-bottom: 10px;
    }

    .brands-gain {
        padding: 40px 0;
    }

    .brands-gain .section-title {
        font-size: 1.5rem;
        width: 80%;
        margin: auto;
        margin-bottom: 20px;
    }

    .brands-gain .content-padding {
        padding: 0 40px;
    }

    .why-trust {
        padding: 20px 0;
    }

    .hero-eventiq {
        padding: 75px 0 30px;
    }

    /* Event IQ responsive */
    .hero-title-eventiq {
        font-size: 2rem;
        text-align: left;
        margin-left: 0;
        margin-bottom: 10px;
    }

    .hero-subtitle-eventiq {
        font-size: 1rem;
        text-align: left;
        margin-left: 0;
        margin-bottom: 10px;
    }

    .powerful-features {
        padding: 60px 0 20px;
    }

    .powerful-features .section-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .powerful-features .section-description {
        max-width: 100%;
        text-align: center;
        margin: auto;
        margin-bottom: 30px;
        width: 100%;
    }

    .content-resp {
        --bs-gutter-y: 0.5rem;
        margin-top: 10px;
    }

    .feature-block {
        width: 95%;
    }

    .tailored-solutions {
        padding: 30px 0;
    }

    .tailored-solutions .section-title {
        font-size: 1.5rem;
    }

    .tailored-solutions .section-title span {
        display: block;
    }

    .tailored-solutions .section-description {
        width: 90%;
        max-width: 90%;
    }

    .tailored-solutions .accordion-button {
        padding-left: 0;
        margin-bottom: 5px;
    }

    .tailored-solutions .accordion-item {
        margin-bottom: 10px;
    }

    .why-choose-eventiq {
        padding: 40px 0;
    }

    .why-choose-eventiq .section-title {
        font-size: 1.5rem;
    }

    .why-choose-eventiq .section-description {
        font-size: 1rem;
        width: 90%;
        max-width: 90%;
    }

    /* Ingest ID responsive */
    .hero-title-ingest-id {
        font-size: 1.5rem;
        text-align: left;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .hero-subtitle-ingest-id {
        font-size: 1rem;
        text-align: left;
        margin-left: 0;
        width: 90%;
        margin-bottom: 10px;
    }

    .customer-journey-diagram {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .journey-step {
        min-width: 100px;
        padding: 15px;
    }

    .journey-arrow {
        font-size: 1.5rem;
    }

    .why-ingest-id .section-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .why-ingest-id .section-description {
        font-size: 1rem;
        text-align: center;
        width: 80%;
        max-width: 80%;
        margin: auto;
        margin-bottom: 20px;
    }

    .feature-card-ingest {
        padding: 5px 15px;
        width: 90%;
    }

    .role-card {
        padding: 20px 15px;
    }

    .setup-step {
        flex-direction: row;
        text-align: left;
        gap: 15px;
    }

    .platform-logos-row {
        gap: 20px;
    }

    .platform-logos-row img {
        /* height: 30px; */
    }

    .cta-ingest-id .cta-title {
        font-size: 2rem;
    }

    .hero-ingest-id .highlight-2 {
        font-size: 1.5rem;
        display: inline;
    }

    .hero-ingest-id .hero-buttons .btn-primary,
    .hero-ingest-id .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 250px;
        padding: 10px 20px;
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .why-ingest-id {
        padding: 40px 0;
    }

    .drive-results .section-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .drive-results .section-description {
        font-size: 1rem;
        width: 80%;
        max-width: 80%;
        margin: auto;
        margin-bottom: 20px;
    }

    .role-card {
        padding: 20px 15px;
    }

    .seamless-setup {
        padding: 40px 0;
    }

    .seamless-setup .section-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .seamless-setup .section-description {
        font-size: 1rem;
        width: 80%;
        max-width: 80%;
        margin: auto;
        margin-bottom: 20px;
    }

    .setup-visual {
        padding: 20px;
    }

    .compatible-platforms {
        padding: 40px 0;
    }

    .trusted-by {
        padding: 40px 0;
    }

    .trusted-by .section-title {
        font-size: 1.5rem;
    }

    .trusted-by .section-description {
        font-size: 1rem;
        width: 80%;
        max-width: 80%;
    }

    .hero-ingest-id {
        padding: 90px 0 0;
    }

}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 10px;
    }

    .hero {
        padding: 90px 0 40px;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 10px;
        text-align: left;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .section-description {
        font-size: 0.85rem;
        margin-bottom: 25px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 250px;
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .trusted-brands {
        padding: 30px 0;
    }

    .stop-flying-blind,
    .performance-marketers,
    .compliance {
        padding: 20px 0;
    }

    .card {
        margin-bottom: 15px;
        padding: 15px;
    }

    .card h3 {
        font-size: 1.1rem;
    }

    .card p {
        font-size: 0.85rem;
    }

    .deploy-infrastructure {
        padding: 40px 0;
    }

    .step-section {
        padding: 25px 0;
    }

    .integrations {
        padding: 40px 0;
    }


    .integrations-platforms {
        padding: 0px;
    }

    .faq {
        padding: 40px 0;
    }

    .accordion-button {
        font-size: 0.85rem;
        padding: 12px;
    }

    .accordion-body {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

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

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

    .brands-logos {
        flex-direction: column;
        gap: 30px;
    }

    .integration-logos {
        flex-direction: column;
        gap: 30px;
    }

    .platform-logos {
        flex-direction: row;
        align-items: center;
        animation: marquee 20s linear infinite;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .platform-logos img {
        margin-right: 15px;
    }

    .data-window {
        height: 200px;
    }

    .data-text {
        font-size: 3rem;
    }

    .laptop-visual {
        height: 200px;
    }

    .laptop-screen {
        height: 150px;
    }

    /* Shopify page responsive */

    .speech-bubble {
        position: static;
        margin: 10px;
        display: inline-block;
    }

    .problem-bubble {
        position: static;
        margin: 10px;
        display: inline-block;
    }

    .money-visual {
        position: static;
    }

    .problem-bubbles {
        position: static;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .metric-number {
        font-size: 3rem;
    }

    .cta-shopify .cta-title {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .data-flow-diagram {
        flex-direction: column;
        gap: 40px;
    }

    .data-sources,
    .data-destinations {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .central-hub {
        margin: 20px 0;
    }
}

@media (max-width: 768px) {
    .hero-ingest-iq {
        padding: 80px 0 30px;
        text-align: left;
    }

    .hero-title-ingest-iq br {
        display: none;
    }

    .hero-subtitle-ingest-iq {
        width: 80%;
        margin-left: 0;
        margin-bottom: 10px;
    }

    .hero-ingest-iq .hero-buttons {
        gap: 0px;
    }

    .hero-ingest-iq .hero-buttons .btn-primary,
    .hero-ingest-iq .hero-buttons .btn-secondary {
        margin-bottom: 10px;
    }

    .hero-ingest-iq .customer-journey-diagram {
        margin: 0rem !important;
        margin-top: 1rem !important;
    }

    .cookie-apocalypse-ingest-iq {
        padding: 40px 0 20px;
    }

    .cookie-apocalypse-ingest-iq .section-title {
        font-size: 1.5rem;
    }

    .cookie-apocalypse-ingest-iq .problem-card-ingest-iq {
        padding: 15px;
    }

    .server-side-tracking-ingest-iq {
        padding: 40px 0 20px;
    }

    .server-side-tracking-ingest-iq .section-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
        text-align: center;
    }

    .features-list-ingest-iq {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .trusted-brands-ingest-iq {
        padding: 40px 0 20px;
    }

    .trusted-brands-ingest-iq .trusted-title {
        font-size: 0.9rem;
        margin-bottom: 30px;
        text-align: center;
    }

    .trusted-brands-ingest-iq .brands-logos-ingest-iq {
        gap: 10px;
    }

    .brands-logos-ingest-iq img {
        width: 90%;
    }

    .all-features-ingest-iq .column-padding {
        margin: 0rem !important;
    }

    .all-features-ingest-iq .accordion-button {
        color: black;
        font-size: 1rem;
        padding-left: 0;
    }

    .ingest-iq .performance-marketers .section-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
        text-align: center;
    }

    .ingest-iq .performance-marketers .section-title br {
        display: none;
    }

    .integrations-list-ingest-iq {
        width: 100%;
        max-width: 80vw;
    }

    .integration-group-ingest-iq {
        width: 100%;
    }

    .integration-category-ingest-iq {
        width: 100%;
    }

    .comparison-table-ingest-iq {
        padding: 20px 0 20px;
    }

    .comparison-table-ingest-iq .section-title {
        font-size: 1.5rem;
        margin-bottom: 0px;
        text-align: center;
    }

    .comparison-group-ingest-iq {
        overflow-x: auto;
        width: 100%;
        padding: 0;
        justify-content: flex-start;
        background: none;
        margin-top: 20px;
    }

    .comparison-group-item-ingest-iq {
        min-width: 200px;
        flex: none;
        border: 2px solid #f4f3f7;
        border-radius: 20px;
        padding: 20px;
    }

    .enterprise-security-ingest-iq {
        padding: 20px 0 20px;
    }

    .enterprise-security-ingest-iq .section-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
        text-align: center;
    }

    /* Mobile Accordion/Plain Structure */
    .desktop-accordion {
        display: none;
    }

    .mobile-plain-structure {
        display: block;
    }

    .team-image {
        display: none;
    }

    .all-features-ingest-iq .column-padding {
        margin: 0 !important;
    }

    .mobile-feature-item {
        margin-bottom: 2rem;
    }

    .mobile-feature-content h3 {
        font-size: 1.25rem;
        text-align: left;
    }

    .mobile-feature-image img {
        max-width: 350px;
    }

    /* Event IQ Mobile Styles */
    .tailored-solutions .desktop-accordion {
        display: none;
    }

    .tailored-solutions .mobile-plain-structure {
        display: block;
        margin-top: 30px;
    }

    .tailored-solutions .team-image {
        display: none;
    }

    .tailored-solutions .row.mt-5 {
        margin-top: 0 !important;
    }

    .tailored-solutions .mobile-feature-item {
        margin-bottom: 2rem;
    }

    .tailored-solutions .mobile-feature-content h3 {
        font-size: 1.25rem;
        text-align: left;
    }

    .tailored-solutions .mobile-feature-image img {
        max-width: 350px;
    }

    .hero-partners {
        padding: 90px 0 0;
    }

    .hero-partners .hero-title-partners {
        font-size: 1.5rem;
    }

    .hero-partners .hero-subtitle-partners {
        font-size: 1rem;
    }

    .hero-partners .hero-buttons {
        gap: 0px;
        align-items: center;
    }

    .partners-compatible-platforms {
        padding: 40px 0;
    }

    .partners-compatible-platforms .platform-logos-row {
        gap: 20px;
    }

    .partners-compatible-platforms .platform-logos-row .partner-logo-item {
        padding: 10px 15px;
    }

    .partners-compatible-platforms .platform-logos-row img {
        height: 20px;
    }

    .hero-about {
        padding: 90px 0 20px;
    }

    .hero-title-about {
        font-size: 1.5rem;
    }

    .hero-subtitle-about {
        font-size: 1rem;
    }

    .our-values {
        padding: 40px 0;
    }

    .our-values .section-title {
        font-size: 1.5rem;
        width: 75%;
        margin: auto;
        margin-bottom: 15px;
    }

    .our-values .section-description {
        font-size: 1rem;
        width: 80%;
        margin: auto;
        margin-bottom: 20px;
        max-width: 80%;
    }

    .value-card {
        padding: 2rem 1.5rem;
    }

    .our-team {
        padding: 40px 0;
    }

    .our-team .section-title {
        font-size: 1.5rem;
        width: 75%;
        margin: auto;
        margin-bottom: 15px;
    }

    .our-team .section-description {
        font-size: 1rem;
        width: 80%;
        margin: auto;
        margin-bottom: 20px;
        max-width: 80%;
    }


    .team-member {
        padding: 1rem;
    }

    .member-photo {
        width: 100px;
        height: 100px;
    }

    .our-team .section-description {
        max-width: 90%;
    }

    .team-story {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .story-text {
        font-size: 0.9rem;
    }

    .team-member {
        padding: 1.5rem;
    }

    .linkedin-link {
        font-size: 0.85rem;
        padding: 6px 12px;
    }

    .hero-contact {
        padding: 90px 0 20px;
    }

    .hero-title-contact {
        font-size: 1.5rem;
    }

    .hero-subtitle-contact {
        font-size: 1rem;
        width: 90%;
    }

    .contact-section {
        padding: 20px 0;
    }

    .contact-info .section-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .contact-info .section-description {
        text-align: center;
        margin: auto;
        margin-bottom: 20px;
    }

    .contact-item {
        flex-direction: row;
        text-align: center;
        padding: 1rem;
        gap: 20px;
    }

    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .contact-form-container {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .map-section .section-title {
        font-size: 1.5rem;
        padding-top: 2rem;
    }

    .map-container iframe {
        height: 300px;
    }

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

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

}

.terms-content {
    padding: 130px 0 40px;
}