@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.5;
    color: #0f172a;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 12px;
}

.container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: auto;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    background: rgba(14, 120, 223, 0.95);
    backdrop-filter: blur(10px);
    padding: 6px 15px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: white;
    letter-spacing: -0.02em;
}

.logo svg {
    width: 18px;
    height: 18px;
}

.logo .logo-img {
    height: 24px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
    display: block;
}

/* Navigation Dropdown */
.nav-dropdown-wrapper {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    padding: 6px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.nav-dropdown-trigger:hover {
    background: rgba(255, 255, 255, 0.2);
}

.nav-dropdown-trigger svg {
    flex-shrink: 0;
}

.nav-dropdown-trigger .dropdown-arrow {
    transition: transform 0.2s;
}

.nav-dropdown-trigger.active .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.nav-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    display: block;
    padding: 10px 14px;
    color: #0f172a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-dropdown-item:hover {
    background: #f5f5f5;
    color: #0e78df;
}

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

.contact-link {
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s;
    padding: 5px 12px;
    border-radius: 12px;
    white-space: nowrap;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-primary {
    background-color: white;
    color: #0e78df;
    padding: 7px 16px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.2s;
    border: none;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    background-color: #f8f8f8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero-section {
    margin-top: 0;
    background: #0e78df;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    padding: 60px 0 40px 0;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-text {
    color: white;
}

.hero-label {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-title {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 24px;
    padding-top: 12px;
    color: white;
    letter-spacing: -0.03em;
}

.mobile-break {
    display: none;
}

.hero-description {
    margin-bottom: 30px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-tagline {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-feature-item {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: -0.01em;
}

.hero-divider {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

.hero-values {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-value {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    letter-spacing: -0.01em;
}

.hero-subscription {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    letter-spacing: -0.01em;
}

.btn-quote {
    background-color: white;
    color: #0e78df;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background-color: #f8f8f8;
}

.hero-highlight {
    margin-top: 24px;
    padding: 0;
    background: transparent;
    border: none;
}

.highlight-main {
    color: #5de4e6;
    font-size: 15px;
    line-height: 1.4;
    margin: 0 0 8px 0;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.highlight-sub {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 14px 0;
    font-weight: 400;
}

.highlight-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 9px 18px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(4px);
}

/* Hero Image Section */
.hero-image {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 1200px;
}

.hero-grid-item {
    border-radius: 9px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    background: white;
}

.hero-grid-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.hero-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
}

/* Trusted Companies Section */
.trusted-section {
    background-color: #ffffff;
    padding: 30px 0;
    overflow: hidden;
}

.trusted-title {
    text-align: center;
    font-size: 32px;
    font-weight: 400;
    color: #0e78df;
    margin-bottom: 40px;
    letter-spacing: -0.03em;
}

.logos-container {
    display: flex;
    align-items: center;
    gap: 45px;
    animation: scrollLogos 40s linear infinite;
    width: max-content;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

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

.logo-item {
    min-width: 90px;
    max-width: 90px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.logo-img {
    max-width: 100%;
    max-height: 38px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

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

/* Future Section */
.future-section {
    background-color: white;
    padding: 75px 0 30px 0;
}

.future-title {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 60px;
    letter-spacing: -0.03em;
    text-align: center;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: #f5f5f5;
    padding: 38px 30px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

.cube-icon {
    width: 60px;
    height: 60px;
}

.card-title {
    font-size: 14px;
    line-height: 1.6;
    color: #334155;
    font-weight: 400;
}

.card-title strong {
    font-weight: 600;
    color: #0f172a;
}

/* Paradigm Section */
.paradigm-section {
    background-color: #f8f8f8;
    padding: 75px 0;
    text-align: center;
}

.paradigm-title {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 22px;
    letter-spacing: -0.03em;
}

.paradigm-description {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-get-quote {
    background-color: #0e78df;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.2);
}

.btn-get-quote:hover {
    background-color: #0a5ba8;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features-section {
    background-color: white;
    padding: 11px 0 50px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: start;
}

/* Fully Managed Service - Large Card */
.feature-card-large {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
                url('data:image/svg+xml,<svg width="500" height="700" xmlns="http://www.w3.org/2000/svg"><rect width="500" height="700" fill="%23555"/><circle cx="250" cy="300" r="100" fill="%23666" opacity="0.3"/><rect x="180" y="200" width="140" height="300" fill="%23444" opacity="0.4"/></svg>');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    padding: 28px;
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.card-overlay {
    position: relative;
    z-index: 2;
    max-width: 300px;
}

.feature-card-title {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.feature-card-text {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

/* Right Column */
.features-right-column {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.feature-card-white {
    background-color: #f5f5f5;
    border-radius: 15px;
    padding: 28px;
    min-height: 180px;
    border: 2px solid #e0e0e0;
}

.card-content-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    align-items: center;
}

.feature-card-title-dark {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.feature-card-description {
    font-size: 11px;
    line-height: 1.6;
    color: #64748b;
}

/* Timeline Styles */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 9px 0;
}

.timeline-icon {
    flex-shrink: 0;
    width: 27px;
    height: 27px;
}

.timeline-icon svg {
    width: 100%;
    height: 100%;
}

.timeline-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.timeline-week {
    font-size: 10px;
    font-weight: 600;
    color: #0096D6;
}

.timeline-desc {
    font-size: 10px;
    color: #64748b;
    line-height: 1.4;
}

.timeline-divider {
    width: 1px;
    height: 12px;
    background-color: #ddd;
    margin-left: 14px;
}

/* Devices Mockup */
.devices-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.devices-svg {
    width: 100%;
    max-width: 225px;
    height: auto;
}

/* Tools Section with Tabs */
.tools-section {
    background-color: white;
    padding: 50px 0;
}

.tools-title {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.1;
    color: #0e78df;
    margin-bottom: 12px;
    text-align: center;
    letter-spacing: -0.03em;
}

.tools-description {
    font-size: 13px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 28px;
    text-align: center;
}

/* Tabs Navigation */
.tabs-nav-wrapper {
    position: relative;
    margin-bottom: 38px;
}

.tabs-navigation {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 8px 0 15px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 1050px) {
    .tabs-navigation {
        justify-content: flex-start;
        flex-wrap: nowrap;
        padding: 8px 30px 15px 30px;
    }
}

.tabs-navigation::-webkit-scrollbar {
    display: none;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.1);
}

.nav-arrow.visible {
    display: flex;
}

.nav-arrow:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

.nav-arrow-left {
    left: 0;
}

.nav-arrow-right {
    right: 0;
}

.nav-arrow svg {
    width: 15px;
    height: 15px;
    fill: #334155;
}

.tab-button {
    background-color: transparent;
    border: 2px solid #e5e7eb;
    border-radius: 9px;
    padding: 11px 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 79px;
    flex-shrink: 0;
    position: relative;
}

@media (min-width: 1050px) {
    .tab-button {
        flex-shrink: 1;
    }
}

.tab-button:hover {
    background-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.tab-button.active {
    background-color: white;
    border-width: 2px;
    border-style: solid;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.tab-button.active .tab-icon {
    transform: scale(1.05);
}

.tab-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tab-button:hover .tab-icon {
    transform: scale(1.05);
}

.tab-button span {
    font-size: 9px;
    font-weight: 600;
    color: #64748b;
    transition: all 0.3s ease;
}

.tab-button:hover span {
    color: #334155;
}

.tab-button.active span {
    color: #0f172a;
}

/* Tabs Content */
.tabs-content {
    position: relative;
    min-height: 375px;
}

.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
    animation: fadeInScale 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.96) translateY(15px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.tab-content-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 45px;
    align-items: center;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 15px;
    padding: 38px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    position: relative;
}

.tab-text {
    max-width: 375px;
}

.tab-visual {
    position: relative;
}

.tab-content-title {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.tab-content-description {
    font-size: 13px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 24px;
}

.btn-use-case {
    background-color: #0e78df;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-use-case:hover {
    background-color: #0a5ba8;
    transform: translateY(-2px);
}

/* Phone Mockup */
.phone-mockup {
    max-width: 240px;
    margin: 0 auto;
}

.phone-screen {
    background: #1a1a1a;
    border-radius: 24px;
    padding: 9px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
}

.phone-content {
    background: linear-gradient(180deg, #e8f4f8 0%, #f0f9ff 100%);
    border-radius: 18px;
    padding: 18px;
    min-height: 435px;
}

.phone-header {
    margin-bottom: 18px;
}

.phone-section {
    margin-top: 15px;
}

.event-card {
    background: white;
    padding: 12px;
    border-radius: 9px;
    margin-bottom: 9px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Laptop Mockup */
.laptop-mockup {
    max-width: 525px;
    margin: 0 auto;
}

.laptop-screen {
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
    min-height: 300px;
}

/* How It Works Section */
.how-it-works-section {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    padding: 50px 0;
}

.process-header {
    text-align: center;
    max-width: 675px;
    margin: 0 auto 45px;
}

.how-title {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.1;
    color: #0e78df;
    margin-bottom: 14px;
    letter-spacing: -0.03em;
}

.how-description {
    font-size: 14px;
    line-height: 1.7;
    color: #64748b;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

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

.step-number {
    width: 42px;
    height: 42px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 18px;
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.step-description {
    font-size: 12px;
    line-height: 1.6;
    color: #64748b;
}

.process-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.process-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 9px 30px rgba(0, 0, 0, 0.12);
    border-color: #5de4e6;
}

.process-card-highlight {
    background: linear-gradient(135deg, #f0fdff 0%, #ffffff 100%);
    border: 2px solid #5de4e6;
}

.process-icon {
    font-size: 36px;
    margin-bottom: 15px;
    display: inline-block;
}

.process-title {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.process-description {
    font-size: 12px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 15px;
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-list li {
    font-size: 11px;
    line-height: 1.6;
    color: #334155;
    margin-bottom: 9px;
    padding-left: 21px;
    position: relative;
}

.process-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5de4e6;
    font-weight: bold;
    font-size: 14px;
}

.process-cta {
    background: linear-gradient(135deg, #0e78df 0%, #1a8fef 100%);
    border-radius: 15px;
    padding: 45px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.process-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(93, 228, 230, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

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

.process-cta h3 {
    font-size: 27px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.process-cta p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.btn-process {
    background-color: #5de4e6;
    color: #0e78df;
    padding: 14px 30px;
    border-radius: 9px;
    border: none;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(93, 228, 230, 0.3);
}

.btn-process:hover {
    background-color: #4dd4d6;
    transform: translateY(-2px);
    box-shadow: 0 9px 24px rgba(93, 228, 230, 0.4);
}

/* Testimonials Section */
.testimonials-section {
    background-color: white;
    padding: 45px 0;
    overflow: hidden;
}

.testimonials-container {
    max-width: 100%;
}

.testimonials-title {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.1;
    color: #0e78df;
    margin-bottom: 28px;
    text-align: center;
    padding: 0 30px;
    letter-spacing: -0.02em;
}

.testimonials-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testimonials-track {
    display: flex;
    gap: 18px;
    animation: scroll 60s linear infinite;
    width: max-content;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

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

.testimonial-card {
    background-color: #f8f8f8;
    padding: 21px 27px;
    border-radius: 9px;
    min-width: 338px;
    max-width: 338px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    background-color: #ebebeb;
    border-color: #e0e0e0;
    transform: scale(1.02);
}

.testimonial-text {
    font-size: 11px;
    line-height: 1.6;
    color: #0f172a;
    font-style: italic;
}

.testimonial-author {
    font-size: 10px;
    color: #64748b;
    font-weight: 600;
    font-style: normal;
    margin-left: 6px;
}

/* Team Section */
.team-section {
    background-color: #f8f8f8;
    padding: 75px 0;
}

.team-title {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 15px;
    text-align: center;
    letter-spacing: -0.03em;
}

.team-description {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 60px;
    text-align: center;
}

.team-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 38px;
}

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

.team-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 18px;
    color: #0f172a;
}

.team-icon svg {
    width: 100%;
    height: 100%;
}

.team-card-title {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 9px;
    line-height: 1.3;
}

.team-card-description {
    font-size: 11px;
    line-height: 1.6;
    color: #64748b;
}

/* FAQ Section */
.faq-section {
    background-color: white;
    padding: 50px 0;
}

.faq-title {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.1;
    color: #0e78df;
    margin-bottom: 28px;
    text-align: center;
    letter-spacing: -0.02em;
}

.faq-container {
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 18px 0;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    transform: translateY(-2px);
    border-color: #cbd5e1 !important;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-size: 12px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.5;
}

.faq-question:hover {
    color: #334155;
}

.faq-question .highlight {
    color: #f97316;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #64748b;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 750px;
    padding-top: 15px;
}

.faq-answer p {
    font-size: 11px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 12px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 12px 0;
    padding-left: 18px;
}

.faq-answer li {
    font-size: 11px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 9px;
}

.faq-answer li:last-child {
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background-color: #0e78df;
    padding: 60px 0;
    text-align: center;
}

.cta-title {
    font-size: 38px;
    font-weight: 400;
    line-height: 1.1;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.btn-cta {
    background-color: #5de4e6;
    color: #0e78df;
    padding: 14px 30px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 3px 9px rgba(93, 228, 230, 0.3);
}

.btn-cta:hover {
    background-color: #4dd4d6;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(93, 228, 230, 0.4);
}

/* Footer */
.footer {
    background-color: #f8f8f8;
    padding: 45px 0 22px 0;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    align-items: start;
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #0e78df;
}

.footer-nav {
    display: flex;
    gap: 24px;
    margin-bottom: 9px;
}

.footer-nav a {
    color: #64748b;
    text-decoration: none;
    font-size: 11px;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #0e78df;
}

.footer-email {
    font-size: 11px;
    color: #64748b;
}

.footer-copyright {
    font-size: 11px;
    color: #64748b;
    text-align: right;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 22px;
    border-top: 1px solid #e0e0e0;
}

.footer-address,
.footer-company {
    font-size: 10px;
    color: #999;
}

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

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

    .hero-title {
        font-size: 56px;
    }

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

    .hero-grid {
        max-width: 650px;
        gap: 14px;
    }

    .future-title {
        font-size: 42px;
        margin-bottom: 60px;
    }

    .cards-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .paradigm-title {
        font-size: 42px;
    }

    .paradigm-description {
        font-size: 17px;
    }

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

    .feature-card-large {
        min-height: 400px;
    }

    .card-content-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tools-title {
        font-size: 42px;
    }

    .tools-description {
        font-size: 17px;
    }

    .tab-content-layout {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 60px;
    }

    .tab-content-title {
        font-size: 36px;
    }

    .how-title {
        font-size: 42px;
    }

    .how-description {
        font-size: 17px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-card {
        padding: 32px;
    }

    .process-cta {
        padding: 40px 32px;
    }

    .process-cta h3 {
        font-size: 28px;
    }

    .process-cta p {
        font-size: 16px;
    }

    .testimonials-title {
        font-size: 38px;
    }

    .testimonial-card {
        min-width: 380px;
        max-width: 380px;
    }

    .team-title {
        font-size: 42px;
    }

    .team-description {
        font-size: 17px;
    }

    .team-cards-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-title {
        font-size: 38px;
    }

    .faq-question {
        font-size: 15px;
    }

    .cta-title {
        font-size: 48px;
    }

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

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

    .footer-nav {
        flex-wrap: wrap;
    }
}

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

    .experience-boxes-grid {
        grid-template-columns: 1fr !important;
    }

    .header {
        top: 12px;
        width: calc(100% - 40px);
        max-width: none;
    }

    .nav-wrapper {
        padding: 10px 12px;
    }

    .logo {
        font-size: 14px;
        padding-right: 8px;
    }

    .logo svg {
        width: 20px;
        height: 20px;
    }

    .nav-dropdown-wrapper {
        display: flex;
    }

    .nav-actions {
        gap: 8px;
    }

    .btn-primary {
        font-size: 12px;
        padding: 6px 16px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-content {
        padding: 60px 0 50px 0;
    }

    .hero-grid {
        max-width: 100%;
        gap: 12px;
    }

    .logos-container {
        gap: 45px;
        animation: scrollLogos 40s linear infinite;
    }

    .logo-item {
        min-width: 90px;
        max-width: 90px;
        height: 45px;
    }

    .future-section {
        padding: 60px 0;
    }

    .future-title {
        font-size: 36px;
        margin-bottom: 50px;
    }

    .feature-card {
        padding: 40px 30px;
    }

    .paradigm-section {
        padding: 60px 0;
    }

    .paradigm-title {
        font-size: 36px;
    }

    .paradigm-description {
        font-size: 16px;
    }

    .features-section {
        padding: 60px 0;
    }

    .feature-card-large {
        padding: 40px;
        min-height: 350px;
    }

    .feature-card-white {
        padding: 40px 30px;
    }

    .feature-card-title {
        font-size: 28px;
    }

    .feature-card-title-dark {
        font-size: 24px;
    }

    .tools-section {
        padding: 60px 0;
    }

    .tools-title {
        font-size: 36px;
    }

    .tools-description {
        font-size: 16px;
    }

    .tab-content-layout {
        padding: 40px;
    }

    .tab-content-title {
        font-size: 32px;
    }

    .tab-content-description {
        font-size: 16px;
    }

    .tab-button {
        padding: 20px 24px;
        min-width: 120px;
    }

    .tab-icon {
        width: 50px;
        height: 50px;
    }

    .how-it-works-section {
        padding: 60px 0;
    }

    .how-title {
        font-size: 36px;
    }

    .how-description {
        font-size: 16px;
    }

    .process-header {
        margin-bottom: 50px;
    }

    .process-card {
        padding: 28px;
    }

    .process-title {
        font-size: 20px;
    }

    .process-description {
        font-size: 15px;
    }

    .process-list li {
        font-size: 14px;
    }

    .process-cta {
        padding: 32px 24px;
    }

    .process-cta h3 {
        font-size: 24px;
    }

    .process-cta p {
        font-size: 15px;
    }

    .btn-process {
        padding: 16px 32px;
        font-size: 15px;
    }

    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-title {
        font-size: 32px;
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .testimonial-card {
        min-width: 320px;
        max-width: 320px;
        padding: 24px 28px;
    }

    .testimonials-track {
        gap: 16px;
    }

    .team-section {
        padding: 60px 0;
    }

    .team-title {
        font-size: 36px;
    }

    .team-description {
        font-size: 16px;
        margin-bottom: 60px;
    }

    .team-cards-grid {
        gap: 35px;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 32px;
    }

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

    .faq-question {
        font-size: 15px;
    }

    .faq-answer p,
    .faq-answer li {
        font-size: 14px;
    }

    .cta-section {
        padding: 80px 0;
    }

    .cta-title {
        font-size: 36px;
    }

    .btn-cta {
        padding: 16px 32px;
    }

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

    .footer-content {
        margin-bottom: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    body, html {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Make "We build software" grid stack vertically on mobile */
    .software-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .bespoke-stats-container {
        flex-direction: column !important;
        gap: 16px !important;
        width: 100% !important;
        padding: 0 16px !important;
    }

    .bespoke-stat-box {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px !important;
        text-align: center !important;
    }

    .pricing-boxes-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .experience-badges-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }

    .experience-badge {
        padding: 20px 16px !important;
        min-height: auto !important;
        overflow: visible !important;
    }

    .badge-text {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
        width: 100% !important;
        overflow: visible !important;
    }

    .container {
        padding: 0 16px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box;
    }

    * {
        max-width: 100% !important;
        box-sizing: border-box;
    }

    img, svg, video, iframe {
        max-width: 100% !important;
        height: auto;
    }

    section, div, main, article {
        max-width: 100% !important;
        overflow-x: hidden;
    }

    /* Exempt logos, testimonials, and modal logos from max-width constraints */
    .logos-container,
    .logos-container *,
    .testimonials-track,
    .testimonials-track *,
    .modal-logos-container,
    .modal-logos-container *,
    .modal-logos-scroll,
    .modal-logos-scroll * {
        max-width: none !important;
    }

    .modal-logos-container {
        overflow: hidden !important;
        width: 100% !important;
    }

    .modal-logos-scroll {
        display: flex !important;
        gap: 45px !important;
        animation: scrollLogos 20s linear infinite !important;
        align-items: center !important;
        width: max-content !important;
        min-width: max-content !important;
    }

    .modal-logos-scroll img {
        height: 35px !important;
        width: auto !important;
        object-fit: contain !important;
        flex-shrink: 0 !important;
        display: block !important;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .mobile-break {
        display: inline;
    }

    .hero-section {
        background: #0e78df !important;
        background-image: none !important;
    }

    .hero-section::before {
        display: none !important;
    }

    .hero-description {
        margin-bottom: 24px;
    }

    .hero-tagline {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .hero-features {
        gap: 8px;
        margin-bottom: 16px;
    }

    .hero-feature-item {
        font-size: 12px;
    }

    .hero-values {
        gap: 10px;
        margin-bottom: 16px;
    }

    .hero-value {
        font-size: 12px;
        padding: 5px 12px;
    }

    .hero-subscription {
        font-size: 14px;
    }

    .btn-quote {
        padding: 14px 32px;
        font-size: 15px;
        width: 100%;
        max-width: 300px;
        margin-bottom: 12px;
    }

    .header {
        top: 10px;
        width: calc(100% - 32px);
    }

    .nav-wrapper {
        padding: 10px 14px;
    }

    .nav-dropdown-wrapper {
        display: none !important;
    }

    .btn-primary {
        font-size: 12px;
        padding: 8px 18px;
    }

    .hero-content {
        padding: 60px 0 40px 0;
        gap: 16px !important;
    }

    .hero-text {
        margin-bottom: 0 !important;
    }

    .hero-grid {
        gap: 8px;
        margin-top: 0 !important;
        max-width: 100%;
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-grid-item {
        width: 100%;
    }

    .trusted-section {
        padding: 40px 0;
        overflow: hidden !important;
        width: 100% !important;
    }

    .trusted-title {
        font-size: 24px;
        margin-bottom: 30px;
        padding: 0 16px;
    }

    .logos-container {
        display: flex !important;
        align-items: center !important;
        gap: 45px !important;
        animation: scrollLogos 20s linear infinite !important;
        width: max-content !important;
        min-width: max-content !important;
        padding: 0 !important;
        margin: 0 !important;
        visibility: visible !important;
    }

    .logo-item {
        min-width: 90px !important;
        max-width: 90px !important;
        width: 90px !important;
        height: 45px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .logo-item img,
    .logo-img {
        max-width: 90px !important;
        max-height: 38px !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

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

    .future-title {
        font-size: 24px;
        margin-bottom: 30px;
        padding: 0 16px;
    }

    .secondary-features-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .secondary-features-grid > div {
        padding: 24px 20px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: visible !important;
        word-wrap: break-word !important;
    }

    .feature-card {
        padding: 24px 20px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: visible !important;
        word-wrap: break-word !important;
    }

    .feature-card-title {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }

    .feature-card-text {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    .card-title {
        font-size: 16px;
    }

    .cube-icon {
        width: 70px;
        height: 70px;
    }

    .paradigm-section {
        padding: 50px 0;
    }

    .paradigm-title {
        font-size: 32px;
    }

    .paradigm-description {
        font-size: 15px;
    }

    .btn-get-quote {
        padding: 14px 28px;
        font-size: 15px;
    }

    .features-section {
        padding: 50px 0;
    }

    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .feature-card-large {
        padding: 20px 16px !important;
        min-height: 300px;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .feature-card-white {
        padding: 20px 16px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .feature-card-title {
        font-size: 24px;
    }

    .feature-card-title-dark {
        font-size: 22px;
    }

    .feature-card-description {
        font-size: 14px;
    }

    .timeline-week {
        font-size: 12px;
    }

    .timeline-desc {
        font-size: 12px;
    }

    .tools-section {
        display: none;
    }

    .tools-title {
        font-size: 24px;
        padding: 0 16px;
    }

    .tools-description {
        font-size: 14px;
        padding: 0 16px;
    }

    .tab-content-layout {
        display: flex;
        flex-direction: column;
        padding: 20px 12px;
        gap: 20px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

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

    .tab-content-title {
        font-size: 22px;
        line-height: 1.3;
    }

    .tab-content-description {
        font-size: 14px;
        line-height: 1.5;
    }

    .btn-use-case {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
    }

    .tab-buttons {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }

    .tab-button {
        padding: 12px 16px;
        min-width: 90px;
        flex: 0 1 calc(33.333% - 6px);
    }

    .tab-button span {
        font-size: 11px;
    }

    .tab-icon {
        width: 36px;
        height: 36px;
    }

    .phone-mockup {
        max-width: 280px;
    }

    .phone-content {
        min-height: 500px;
        padding: 20px;
    }

    .laptop-mockup {
        max-width: 100%;
    }

    .how-it-works-section {
        padding: 40px 0;
    }

    .how-title {
        font-size: 24px;
        padding: 0 16px;
    }

    .how-description {
        font-size: 14px;
        padding: 0 16px;
    }

    .process-steps {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .process-step {
        text-align: center !important;
        padding: 24px 20px !important;
        background: #f9fafb !important;
        border-radius: 12px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .step-number {
        width: 60px !important;
        height: 60px !important;
        font-size: 28px !important;
        margin: 0 auto 16px !important;
        background: #0e78df !important;
        color: white !important;
        font-weight: 700 !important;
    }

    .step-title {
        font-size: 22px !important;
        margin-bottom: 12px !important;
        font-weight: 700 !important;
        color: #0e78df !important;
    }

    .step-description {
        font-size: 14px !important;
        line-height: 1.6 !important;
        color: #64748b !important;
    }

    .nav-arrow {
        display: none !important;
    }

    .tabs-navigation {
        padding: 8px 0 15px 0 !important;
    }

    .hero-highlight {
        padding: 20px;
    }

    .highlight-heading {
        font-size: 18px;
    }

    .highlight-subtext {
        font-size: 15px;
    }

    .highlight-cta {
        font-size: 16px;
    }

    .highlight-link {
        font-size: 15px;
    }

    .process-header {
        margin-bottom: 40px;
    }

    .process-card {
        padding: 20px;
    }

    .process-icon {
        font-size: 36px;
    }

    .process-title {
        font-size: 17px;
    }

    .process-description {
        font-size: 13px;
    }

    .process-cta {
        padding: 24px 20px;
    }

    .process-cta h3 {
        font-size: 20px;
    }

    .process-cta p {
        font-size: 13px;
    }

    .btn-process {
        padding: 12px 24px;
        font-size: 14px;
    }

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

    .testimonials-title {
        font-size: 24px;
        margin-bottom: 30px;
        padding: 0 16px;
    }

    .testimonial-card {
        min-width: 280px !important;
        max-width: 280px !important;
        width: 280px !important;
        padding: 18px !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column !important;
        flex-shrink: 0 !important;
    }

    .testimonial-text {
        font-size: 11px !important;
        line-height: 1.6 !important;
        margin-bottom: 12px !important;
        display: block !important;
        white-space: normal !important;
    }

    .testimonial-author {
        font-size: 10px !important;
        display: block !important;
    }

    .testimonial-role {
        font-size: 9px !important;
        display: block !important;
    }

    .testimonials-track {
        gap: 12px !important;
        animation: scroll 120s linear infinite !important;
        display: flex !important;
        width: max-content !important;
        min-width: max-content !important;
    }

    .team-section {
        padding: 50px 0;
    }

    .team-title {
        font-size: 32px;
    }

    .team-description {
        font-size: 15px;
        margin-bottom: 50px;
    }

    .team-cards-grid {
        gap: 30px;
    }

    .team-card-title {
        font-size: 18px;
    }

    .team-card-description {
        font-size: 14px;
    }

    .team-icon {
        width: 40px;
        height: 40px;
    }

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

    .faq-title {
        font-size: 24px;
        padding: 0 16px;
    }

    .faq-container {
        padding: 0 16px;
    }

    .faq-item {
        padding: 16px 0;
    }

    .faq-question {
        font-size: 14px;
        gap: 12px;
        line-height: 1.4;
    }

    .faq-answer p,
    .faq-answer li {
        font-size: 13px;
        line-height: 1.6;
    }

    .faq-icon {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

    .pricing-section {
        padding: 40px 0 !important;
    }

    .pricing-section h2 {
        font-size: 24px !important;
        padding: 0 16px;
    }

    .pricing-section .container > div {
        grid-template-columns: 1fr !important;
        padding: 24px 16px !important;
        gap: 20px !important;
    }

    .pricing-section h3 {
        font-size: 20px !important;
        white-space: normal !important;
    }

    .pricing-section p, .pricing-section li {
        font-size: 13px !important;
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-title {
        font-size: 28px;
        padding: 0 16px;
    }

    .cta-description {
        font-size: 14px;
        padding: 0 16px;
    }

    .btn-cta {
        padding: 14px 32px;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
    }

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

    .footer-nav {
        flex-direction: column;
        gap: 12px;
    }

    .footer-brand {
        font-size: 13px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }

    .footer-address,
    .footer-company {
        font-size: 12px;
    }

    .quote-modal-grid {
        grid-template-columns: 1fr !important;
        min-height: auto;
    }

    .quote-modal-left {
        display: none;
    }

    .quote-modal-right {
        padding: 30px 20px !important;
    }

    .quote-modal-bottom {
        padding: 15px 20px;
    }

    .quote-modal-content {
        max-width: 95% !important;
        max-height: 95vh !important;
    }

    .quote-modal-content h2 {
        font-size: 20px !important;
    }

    .quote-modal-content p {
        font-size: 12px !important;
    }

    .form-group label {
        font-size: 13px !important;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px !important;
    }

    .form-row {
        grid-template-columns: 1fr !important;
    }

    button[type="submit"] {
        font-size: 14px !important;
        padding: 14px !important;
    }
}

/* Quote Form Modal Styles */
.quote-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 10000;
    overflow-y: auto;
    padding: 20px;
}

.quote-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 900px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.quote-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f5f5f5;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
    color: #666;
}

.quote-modal-close:hover {
    background: #e5e5e5;
    color: #000;
}

.quote-modal-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 0;
    min-height: 450px;
}

.quote-modal-left {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px 0 0 0;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.quote-modal-right {
    padding: 30px 30px;
    position: relative;
    z-index: 2;
}

.quote-modal-bottom {
    background: #f8f9fa;
    padding: 20px 25px;
    border-radius: 0 0 12px 12px;
    border-top: 1px solid #e5e7eb;
}

/* Form Styles */
.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 6px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 13px;
    font-family: inherit;
    transition: all 0.2s;
    pointer-events: auto;
    user-select: text;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #0e78df;
    box-shadow: 0 0 0 3px rgba(14, 120, 223, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 70px;
    pointer-events: auto;
    user-select: text;
    position: relative;
    z-index: 3;
}

/* Budget Options */
.budget-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.budget-option {
    position: relative;
    cursor: pointer;
}

.budget-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.budget-option span {
    display: block;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.budget-option input[type="radio"]:checked + span {
    border-color: #0e78df;
    background: rgba(14, 120, 223, 0.05);
    color: #0e78df;
}

.budget-option:hover span {
    border-color: #0e78df;
}

/* Form Row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Phone Input */
.phone-input {
    display: flex;
    gap: 10px;
}

.phone-input select {
    width: 80px;
    flex-shrink: 0;
}

.phone-input input {
    flex: 1;
}

/* Checkbox Label */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    cursor: pointer;
}

/* Submit Button */
.quote-submit-btn {
    width: 100%;
    padding: 12px 20px;
    background: #0e78df;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
}

.quote-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 120, 223, 0.4);
    background: #0d6ec9;
}

.quote-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* File Upload Button */
.file-upload-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: #f3f4f6;
    color: #374151;
    border: 2px dashed #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.file-upload-btn:hover {
    background: #e5e7eb;
    border-color: #0e78df;
    color: #0e78df;
}

/* Integrated File Upload Button (seamless with textarea) */
.file-upload-btn-integrated {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    background: transparent;
    color: #6b7280;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s;
}

.file-upload-btn-integrated:hover {
    background: #f9fafb;
    border-color: #0e78df;
    color: #0e78df;
}

.file-upload-btn-integrated svg {
    opacity: 0.7;
}

.file-upload-btn-integrated:hover svg {
    opacity: 1;
    stroke: #0e78df;
}

/* Modal Logos Scroll Animation */
.modal-logos-container {
    padding: 20px 0;
}

.modal-logos-scroll {
    white-space: nowrap;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
