/* ============================
    Navbar
============================ */

/* Navbar Container */

 
#navbar {
    overflow: hidden;
}

.navbar-sonic {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--spacing-md) 0;
    transition: all 0.3s ease-in-out;
    background-color: transparent;
}

.navbar-sonic.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: var(--spacing-sm) 0;
}

/* Nav Wrapper */
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo-img {
    height: 70px;
    /* Adjust based on logo aspect ratio */
    width: auto;
    transition: transform 0.3s ease;
}

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

/* Nav Links (Desktop) */
.nav-links {
    display: flex;
    gap: var(--spacing-xl);
    align-items: center;
}

.nav-link {
    font-family: var(--font-primary);
    font-size: var(--font-size-md);
    font-weight: bold;
    color: var(--color-text-primary);
    letter-spacing: 1px;
    position: relative;
    padding: 0;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-primary);
    text-decoration: none;
}

/* Micro-interaction: Underline on hover */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* CTA Button */
.btn-cta {
    position: relative;
    background-color: transparent;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    z-index: 1;
    border: none;
    text-decoration: none;
    text-transform: uppercase;
}

/* Rotating Glow Layer */
.btn-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent,
            #ffffff,
            transparent 30%);
    animation: rotate 2s linear infinite;
    z-index: -2;
}

/* Inner Background Layer */
.btn-cta::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background-color: var(--color-primary);
    border-radius: 47px;
    z-index: -1;
    transition: background-color 0.2s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 162, 255, 0.3);
    color: #fff;
    text-decoration: none;
}

/* Change inner background on hover */
.btn-cta:hover::after {
    background-color: var(--color-hover-primary);
}

.btn-icon {
    width: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    font-size: 0.9em;
}

.btn-cta:hover .btn-icon {
    width: auto;
    opacity: 1;
    transform: translateX(0);
    margin-left: 4px;
}

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

    100% {
        transform: rotate(360deg);
    }
}

/* Mobile Toggle */
.mobile-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1002;
}

.mobile-toggle .bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text-primary);
    margin-bottom: 6px;
    transition: all 0.3s ease;
}

.mobile-toggle .bar:last-child {
    margin-bottom: 0;
}

/* Mobile Toggle Active State */
.mobile-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-toggle.active .bar:nth-child(2) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

.mobile-link {
    font-family: var(--font-secondary);
    font-size: 2rem;
    color: var(--color-text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: var(--color-primary);
    text-decoration: none;
}

/* Dropdown Menu */
.nav-item-dropdown {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: -20px;
}

.dropdown-menu-sonic {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: #fff;
    min-width: 180px;
    padding: var(--spacing-sm) 0;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1100;
}

.nav-item-dropdown:hover .dropdown-menu-sonic {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.dropdown-item-sonic {
    display: block;
    padding: var(--spacing-sm) var(--spacing-md);
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    color: var(--color-text-primary);
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-item-sonic:hover {
    background-color: var(--color-background-secondary);
    color: var(--color-primary);
    text-decoration: none;
}

/* Arrow rotation on hover */
.nav-item-dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

/* ============================
   Hero 
============================ */
#hero {
    overflow: hidden;
}



.hero-section {
    position: relative;
    padding-top: 150px;
    /* Account for fixed navbar */
    padding-bottom: 100px;
    background-color: #fff;
    overflow: hidden;
}

/* Background Gradient Blur */
.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 162, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-right: var(--spacing-xl);
}

.hero-title {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-md);
}

.hero-subtitle {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    color: #353535;
    margin-bottom: var(--spacing-xl);
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-md);
}

/* Hero Buttons */
.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 50px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
    border: 2px solid var(--color-primary);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--color-hover-primary);
    border-color: var(--color-hover-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 162, 255, 0.3);
    color: #fff;
    text-decoration: none;
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text-primary);
    border: 2px solid #E0E0E0;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    text-decoration: none;
}

/* Hero Visual */
.hero-visual-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.floating-orb {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 162, 255, 0.15));
    animation: float 6s ease-in-out infinite;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}


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

/* Hero Stats */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #e0e0e0, transparent);
    align-self: flex-start;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

.stat-full-width {
    flex-basis: 100%;
}

.stat-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}

.stat-stars .fa-star {
    font-size: 1.25rem;
    color: #152038;
}

.hero-visual-wrapper {
    margin-top: var(--spacing-lg);
}


@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-lg {
        width: 100%;
    }
    
    .hero-stats {
        gap: 1.5rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .stat-divider {
        height: 50px;
    }
}

@media (max-width: 768px) {
    .stat-divider {
        display: none;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* ============================
   What We Offer
============================ */
#what-we-offer {
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-family: var(--font-primary);
    color: #353535;
    max-width: 600px;
}

/* Product Grid */
.product-grid-wrapper {
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.product-card {
    position: relative;
    background: #fff;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
    border: 1px solid #E0E0E0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--color-primary);
}



.products-button {
    background: var(--color-primary);
    color: #fff;
    padding: 1rem 2rem;
    padding-left: 1.2em;
    font-size: var(--font-size-md);
    font-weight: bold;
    border-radius: 0.9em;
    border: none;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    box-shadow: radial-gradient(circle, rgba(0, 162, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    overflow: hidden;
    position: relative;
    height: 2.8em;
    padding-right: 3.3em;
    cursor: pointer;
  }
  
  .products-button .icon {
    background: white;
    margin-left: 1em;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.2em;
    width: 2.2em;
    border-radius: 0.7em;
    box-shadow: radial-gradient(circle, rgba(0, 162, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    right: 0.3em;
    transition: all 0.3s;
  }
  
  .products-button:hover .icon {
    width: calc(100% - 0.6em);
  }
  
  .products-button .icon svg {
    width: 1.1em;
    transition: transform 0.3s;
    color: var(--color-primary);
  }
  
  .products-button:hover .icon svg {
    transform: translateX(0.1em);
  }
  
  .products-button:active .icon {
    transform: scale(0.95);
  }
  .boxbutton{
    display: flex;
    justify-content: center;
  }

/* Card Image Container */
.card-image {
    width: 80px;
    height: 80px;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .card-image img {
    transform: scale(1.1);
}

.card-title {
    font-family: var(--font-secondary);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Status Badge - Dot Style (Minimal, Clean) */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: bolder;
    font-family: var(--font-primary);
    background: none;
    padding: 0;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}

/* Muted color palette */
.badge-live {
    color: #6b7280;
}

.badge-live .status-dot {
    background-color: #10b981;
}

.badge-beta {
    color: #6b7280;
}

.badge-beta .status-dot {
    background-color: #f59e0b;
}

.badge-soon {
    color: #9ca3af;
}

.badge-soon .status-dot {
    background-color: #9ca3af;
}

.card-desc {
    font-size: var(--font-size-base);
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
    line-height: 1.5;
}

.card-link {
    font-size: 0.90rem;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 1px;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    transition: gap 0.3s ease;
}

.card-link:hover {
    text-decoration: none;
    gap: 5px;
}

/* Services Section */
.services-wrapper {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-xl);
}

.services-heading {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-text-primary);
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.services-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.service-block {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    transition: all 0.3s ease;
}

.service-block:last-child {
    border-right: none;
}

.service-block:hover {
    background-color: #FAFAFA;
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: transparent;
    color: var(--color-primary);
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.service-block:hover .service-icon {
    color: var(--color-hover-primary);
    transform: scale(1.15);
}

.service-label {
    display: block;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
}

.service-desc {
    display: block;
    font-size: var(--font-size-base);
    color: var(--color-text-primary);
    line-height: 1.6;
}

.service-divider {
    display: none;
}

/* CTA */
.btn-text-cta {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-text-primary);
    transition: color 0.3s ease;
}

.btn-text-cta:hover {
    color: var(--color-primary);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 991px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-row {
        grid-template-columns: 1fr;
    }

    .service-block {
        border-right: none;
        border-bottom: 1px solid #E8E8E8;
    }

    .service-block:last-child {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================
   Why Us
============================ */
.why-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.why-title {
    font-family: var(--font-secondary);
    font-size: 2.75rem;
    font-weight: 700;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 162, 255, 0.2);
}

/* Visual Connector - Arrow between cards */
.why-card:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #E0E0E0;
    font-weight: 300;
    transition: all 0.5s ease;
    z-index: 1;
}

.why-card:hover::after {
    color: rgba(0, 162, 255, 0.6);
    text-shadow: 0 0 20px rgba(0, 162, 255, 0.3);
}

/* Icon Styling */
.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 162, 255, 0.08) 0%, rgba(0, 162, 255, 0.02) 100%);
    color: var(--color-primary);
    font-size: 1.75rem;
    transition: all 0.4s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(0, 162, 255, 0.3);
    background: linear-gradient(135deg, rgba(0, 162, 255, 0.15) 0%, rgba(0, 162, 255, 0.05) 100%);
}

/* Card Title */
.why-card-title {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Card Description */
.why-card-desc {
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Responsive - Tablet */
@media (max-width: 991px) {
    .why-title {
        font-size: 2.25rem;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Horizontal connectors for same row */
    .why-card:nth-child(odd)::after {
        content: '→';
        right: -2rem;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Remove connector from even cards */
    .why-card:nth-child(even)::after {
        content: '';
    }

    /* Vertical connector between rows */
    .why-card:nth-child(2)::before {
        content: '↓';
        position: absolute;
        bottom: -2rem;
        left: 50%;
        transform: translateX(-50%);
        font-size: 1.5rem;
        color: #E0E0E0;
        transition: all 0.5s ease;
    }

    .why-card:nth-child(2):hover::before {
        color: rgba(0, 162, 255, 0.6);
        text-shadow: 0 0 20px rgba(0, 162, 255, 0.3);
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .why-section {
        padding: 60px 0;
    }

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

    .why-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-card {
        padding: 2rem 1.5rem;
    }

    /* Vertical connectors only */
    .why-card::after {
        content: '';
    }

    .why-card:not(:last-child)::before {
        content: '↓';
        position: absolute;
        bottom: -1.5rem;
        left: 50%;
        transform: translateX(-50%);
        font-size: 1.5rem;
        color: #E0E0E0;
        transition: all 0.5s ease;
        z-index: 1;
    }

    .why-card:hover::before {
        color: rgba(0, 162, 255, 0.6);
        text-shadow: 0 0 20px rgba(0, 162, 255, 0.3);
    }

    .why-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .why-card-title {
        font-size: 1.25rem;
    }

    .why-card-desc {
        font-size: 0.875rem;
    }
}

/* Glowing Question Mark */
.why-question-mark {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    display: inline-block;
    text-shadow:
        0 0 10px rgba(253, 185, 19, 0.5),
        0 0 20px rgba(253, 185, 19, 0.3),
        0 0 30px rgba(253, 185, 19, 0.2);
    animation: questionGlow 2s ease-in-out infinite;
}

@keyframes questionGlow {

    0%,
    100% {
        text-shadow:
            0 0 10px rgba(253, 185, 19, 0.5),
            0 0 20px rgba(253, 185, 19, 0.3),
            0 0 30px rgba(253, 185, 19, 0.2);
        transform: scale(1);
    }

    50% {
        text-shadow:
            0 0 15px rgba(253, 185, 19, 0.7),
            0 0 30px rgba(253, 185, 19, 0.5),
            0 0 45px rgba(253, 185, 19, 0.3);
        transform: scale(1.05);
    }
}

/* ============================
   Why Sonic AI Section
============================ */
.why-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

/* Glowing Question Mark */
.why-question-mark {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    display: inline-block;
    text-shadow:
        0 0 10px rgba(253, 185, 19, 0.5),
        0 0 20px rgba(253, 185, 19, 0.3),
        0 0 30px rgba(253, 185, 19, 0.2);
    animation: questionGlow 2s ease-in-out infinite;
}

@keyframes questionGlow {

    0%,
    100% {
        text-shadow:
            0 0 10px rgba(253, 185, 19, 0.5),
            0 0 20px rgba(253, 185, 19, 0.3),
            0 0 30px rgba(253, 185, 19, 0.2);
        transform: scale(1);
    }

    50% {
        text-shadow:
            0 0 15px rgba(253, 185, 19, 0.7),
            0 0 30px rgba(253, 185, 19, 0.5),
            0 0 45px rgba(253, 185, 19, 0.3);
        transform: scale(1.05);
    }
}

.why-title {
    font-family: var(--font-secondary);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.why-subtitle {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 400;
    color: #353535;
    line-height: 1.7;
}

/* Connected Grid Layout */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Individual Cards */
.why-card {
    position: relative;
    background: #FFFFFF;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #E8E8E8;
}

.why-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-color: rgba(27, 42, 78, 0.2);
}

/* Visual Connector - Arrow between cards */
.why-card:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #E0E0E0;
    font-weight: 300;
    transition: all 0.5s ease;
    z-index: 1;
}

.why-card:hover::after {
    color: rgba(253, 185, 19, 0.8);
    text-shadow: 0 0 20px rgba(253, 185, 19, 0.3);
}

/* Icon Styling */
.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(27, 42, 78, 0.08) 0%, rgba(27, 42, 78, 0.02) 100%);
    color: var(--color-primary);
    font-size: 1.75rem;
    transition: all 0.4s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(253, 185, 19, 0.3);
    background: linear-gradient(135deg, rgba(253, 185, 19, 0.15) 0%, rgba(253, 185, 19, 0.05) 100%);
}

/* Card Title */
.why-card-title {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Card Description */
.why-card-desc {
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Responsive - Tablet */
@media (max-width: 991px) {
    .why-title {
        font-size: 2.25rem;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Horizontal connectors for same row */
    .why-card:nth-child(odd)::after {
        content: '?';
        right: -2rem;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Remove connector from even cards */
    .why-card:nth-child(even)::after {
        content: '';
    }

    /* Vertical connector between rows */
    .why-card:nth-child(2)::before {
        content: '?';
        position: absolute;
        bottom: -2rem;
        left: 50%;
        transform: translateX(-50%);
        font-size: 1.5rem;
        color: #E0E0E0;
        transition: all 0.5s ease;
    }

    .why-card:nth-child(2):hover::before {
        color: rgba(253, 185, 19, 0.8);
        text-shadow: 0 0 20px rgba(253, 185, 19, 0.3);
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .why-section {
        padding: 60px 0;
    }

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

    .why-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-card {
        padding: 2rem 1.5rem;
    }

    /* Vertical connectors only */
    .why-card::after {
        content: '';
    }

    .why-card:not(:last-child)::before {
        content: '?';
        position: absolute;
        bottom: -1.5rem;
        left: 50%;
        transform: translateX(-50%);
        font-size: 1.5rem;
        color: #E0E0E0;
        transition: all 0.5s ease;
        z-index: 1;
    }

    .why-card:hover::before {
        color: rgba(253, 185, 19, 0.8);
        text-shadow: 0 0 20px rgba(253, 185, 19, 0.3);
    }

    .why-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .why-card-title {
        font-size: 1.25rem;
    }

    .why-card-desc {
        font-size: 0.875rem;
    }
}

/* ============================
Our Work
============================ */


.work-section {
    position: relative;
    background-color: var(--color-background-primary);
    overflow: hidden;
}

/* Subtle background accent */
.work-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle,
            rgba(27, 42, 78, 0.02) 0%,
            rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.work-title {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.work-subtitle {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 400;
    color: #353535;
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 0;
}

/* ============================
   LAYOUT 1: HORIZONTAL CARD ROW
   Default premium layout
============================ */

.work-grid-horizontal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xxl);
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* ============================
   LAYOUT 2: VERTICAL GRID (2×2)
   Balanced symmetrical layout
============================ */

.work-grid-vertical {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xxl);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* ============================
   LAYOUT 3: SCROLLING STRIP
   Premium horizontal scroll
============================ */

.work-section-scroll {
    padding-bottom: 140px;
}

.work-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding: var(--spacing-lg) 0;
    margin: 0 -15px;
}

/* Hide scrollbar but keep functionality */
.work-scroll-wrapper::-webkit-scrollbar {
    height: 6px;
}

.work-scroll-wrapper::-webkit-scrollbar-track {
    background: var(--color-background-secondary);
    border-radius: 10px;
    margin: 0 20px;
}

.work-scroll-wrapper::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 10px;
    opacity: 0.3;
}

.work-scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--color-hover-primary);
}

.work-scroll-track {
    display: flex;
    gap: var(--spacing-xxl);
    padding: 0 var(--spacing-lg);
    min-width: min-content;
}

.work-card-scroll {
    min-width: 420px;
    max-width: 420px;
    flex-shrink: 0;
}

/* ============================
   PROJECT CARDS - UNIVERSAL STYLES
============================ */

.work-card {
    position: relative;
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(224, 224, 224, 0.4);
    display: flex;
    flex-direction: column;
}

/* Subtle hover elevation */
.work-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.06),
        0 4px 12px rgba(0, 0, 0, 0.03);
    border-color: rgba(27, 42, 78, 0.15);
}

/* ============================
   VISUAL FRAME - PREMIUM MOCKUP
============================ */

.work-visual {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg,
            var(--color-background-secondary) 0%,
            #FAFAFA 100%);
    padding: var(--spacing-xxl);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    overflow: hidden;
}

/* Premium mockup container */
.work-mockup {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #FFFFFF;
}

.work-card:hover .work-mockup {
    transform: scale(1.02);
    box-shadow:
        0 16px 50px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.06);
}

.work-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Subtle zoom on hover */
.work-card:hover .work-image {
    transform: scale(1.03);
}

/* ============================
   PROJECT DETAILS
============================ */

.work-details {
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    flex-grow: 1;
}

/* Project Title */
.work-project-title {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.01em;
}

/* Project Description */
.work-project-desc {
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 400;
    color: #353535;
    line-height: 1.65;
    margin: 0;
    flex-grow: 1;
}

/* ============================
   OUTCOME TAGS
============================ */

.work-outcomes {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-xs);
}

.outcome-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-primary);
    background: linear-gradient(135deg,
            rgba(27, 42, 78, 0.06) 0%,
            rgba(27, 42, 78, 0.03) 100%);
    border-radius: 20px;
    border: 1px solid rgba(27, 42, 78, 0.1);
    transition: all 0.3s ease;
}

.work-card:hover .outcome-tag {
    background: linear-gradient(135deg, 
    rgba(144, 238, 144, 0.12) 0%, 
    rgba(144, 238, 144, 0.06) 100%);
border-color: rgba(144, 238, 144, 0.3);
    color: var(--color-primary);
}

/* ============================
   MICRO CTA
============================ */

.work-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--color-text-primary);
    text-decoration: none;
    margin-top: var(--spacing-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-bottom: 2px;
}

/* Underline animation */
.work-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-cta:hover {
    color: var(--color-primary);
    text-decoration: none;
    gap: 12px;
}

.work-cta:hover::after {
    width: 100%;
}

.work-cta-icon {
    font-size: 0.75rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-cta:hover .work-cta-icon {
    transform: translateX(4px);
}

/* ============================
   VISUAL CONNECTORS
   Subtle alignment grid
============================ */

/* Horizontal layout connectors */
.work-grid-horizontal .work-card:not(:last-child)::before {
    content: '';
    position: absolute;
    right: calc(-1 * var(--spacing-xxl) / 2);
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(224, 224, 224, 0.4) 20%,
            rgba(224, 224, 224, 0.4) 80%,
            transparent 100%);
    z-index: 1;
    opacity: 0.6;
}

/* Vertical layout connectors */
.work-grid-vertical .work-card:nth-child(odd)::before {
    content: '';
    position: absolute;
    right: calc(-1 * var(--spacing-xxl) / 2);
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(224, 224, 224, 0.4) 20%,
            rgba(224, 224, 224, 0.4) 80%,
            transparent 100%);
    z-index: 1;
    opacity: 0.6;
}

.work-grid-vertical .work-card:nth-child(1)::after,
.work-grid-vertical .work-card:nth-child(2)::after {
    content: '';
    position: absolute;
    bottom: calc(-1 * var(--spacing-xxl) / 2);
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(to right,
            transparent 0%,
            rgba(224, 224, 224, 0.4) 20%,
            rgba(224, 224, 224, 0.4) 80%,
            transparent 100%);
    z-index: 1;
    opacity: 0.6;
}

/* ============================
   SCROLL ANIMATIONS
============================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.45s;
}

/* ============================
   RESPONSIVE DESIGN
============================ */

/* Tablet (991px and below) */
@media (max-width: 991px) {
    .work-section {
        padding: 80px 0;
    }

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

    .work-subtitle {
        font-size: 1rem;
    }

    /* Horizontal layout becomes 2 columns */
    .work-grid-horizontal {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }

    /* Vertical layout stays 2 columns */
    .work-grid-vertical {
        gap: var(--spacing-xl);
    }

    .work-visual {
        min-height: 280px;
        padding: var(--spacing-xl);
    }

    .work-mockup {
        height: 250px;
    }

    .work-details {
        padding: var(--spacing-lg);
    }

    /* Adjust connectors */
    .work-grid-horizontal .work-card:nth-child(2n)::before {
        display: none;
    }

    .work-card-scroll {
        min-width: 360px;
        max-width: 360px;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .work-section {
        padding: 60px 0;
    }

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

    .work-subtitle {
        font-size: 0.9375rem;
    }

    /* All layouts become single column */
    .work-grid-horizontal,
    .work-grid-vertical {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .work-visual {
        min-height: 240px;
        padding: var(--spacing-lg);
    }

    .work-mockup {
        height: 220px;
    }

    .work-details {
        padding: var(--spacing-md);
    }

    .work-project-title {
        font-size: 1.25rem;
    }

    .work-project-desc {
        font-size: 0.875rem;
    }

    /* Remove all connectors on mobile */
    .work-card::before,
    .work-card::after {
        display: none !important;
    }

    .work-card-scroll {
        min-width: 320px;
        max-width: 320px;
    }

    .work-scroll-track {
        gap: var(--spacing-lg);
    }
}

/* Small mobile (576px and below) */
@media (max-width: 576px) {
    .work-section {
        padding: 40px 0;
    }

    .work-title {
        font-size: 1.75rem;
    }

    .work-visual {
        min-height: 200px;
        padding: var(--spacing-md);
    }

    .work-mockup {
        height: 200px;
        border-radius: 8px;
    }

    .outcome-tag {
        font-size: 0.6875rem;
        padding: 5px 12px;
    }

    .work-cta {
        font-size: 0.8125rem;
    }
}

/* ============================
   ACCESSIBILITY
============================ */

/* Focus states for keyboard navigation */
.work-cta:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
    border-radius: 2px;
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {

    .work-card,
    .work-mockup,
    .work-image,
    .work-cta,
    .outcome-tag,
    .fade-in-up {
        animation: none !important;
        transition: none !important;
    }

    .work-card:hover {
        transform: none;
    }

    .work-card:hover .work-mockup,
    .work-card:hover .work-image {
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .work-card {
        border: 2px solid var(--color-text-primary);
    }

    .outcome-tag {
        border: 2px solid var(--color-primary);
    }
}



/* ============================
    CTA
============================ */

/* Subtle Background Decoration */
#cta-section {
    overflow: hidden;
}

.cta-section {
    padding: 100px 0;
    position: relative;
    background-color: #fff;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 162, 255, 0.12) 0%, rgba(0, 162, 255, 0.08) 30%, rgba(0, 162, 255, 0.05) 50%, rgba(255, 255, 255, 0) 100%);
    z-index: 0;
    pointer-events: none;
}

.cta-title {
    font-family: var(--font-secondary);
    font-size: var(--font-size-xxl);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

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



/* ============================
    Footer
============================ */
.footer-sonic {
    overflow: hidden;
}

/* Payment Image */
.footer-payment-img {
    max-width: 200px;
    height: auto;
    display: block;
}

/* Footer Description */
.footer-desc {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Footer Heading */
.footer-heading {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Social Icons */
.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #F8F9FA;
    color: var(--color-text-secondary);
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--color-primary);
    color: #fff;
    transform: translateY(-3px);
}

/* Footer Support Section */
.footer-support {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    align-items: center;
}

.footer-contact-item {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-contact-item:hover {
    color: var(--color-primary);
    text-decoration: none;
}

/* Locations */
.location-block {
    margin-bottom: var(--spacing-md);
}

.location-title {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.location-title i {
    color: var(--color-primary);
    font-size: 1rem;
}

.location-address {
    font-size: 0.95rem;
    color: #353535;
    line-height: 1.6;
    margin-bottom: 10px;
}

.location-phone {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-phone:hover {
    color: var(--color-primary);
    text-decoration: none;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #F5F5F5;
}

.copyright-text {
    font-size: 0.85rem;
    color: var(--color-primary);
    max-width: none;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-sonic {
        padding: 60px 0 30px;
        text-align: left;
    }

    .footer-brand-large {
        font-size: 18vw;
        /* Larger on mobile relative to width */
        margin-bottom: var(--spacing-xl);
    }

    .footer-heading {
        margin-top: var(--spacing-md);
        margin-bottom: var(--spacing-md);
    }

    .location-block {
        margin-bottom: var(--spacing-lg);
    }
}



/* CTA WRAPPER */
.cta-wrapper {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* PRIMARY CTA */
.primary-cta,
.secondary-cta {
    display: inline-block;
    padding: 14px 26px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.primary-cta {
    background-color: #fff;
    color: #000;
}

.secondary-cta {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #fff;
}

/* HOVER EFFECTS */
.primary-cta:hover,
.secondary-cta:hover {
    transform: scale(1.05);
}

.secondary-cta:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* LOCATION PINS STYLES */
.location-pins {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    z-index: 2;
}

.pin {
    text-align: center;
    color: #fff;
    font-size: 1rem;
}

.pin img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.location-label {
    font-weight: 600;
    margin-bottom: 5px;
}

.pin p {
    font-size: 0.9rem;
    margin-top: 5px;
}

/* RESPONSIVE STYLES */
@media screen and (max-width: 768px) {
    .headline {
        font-size: 3rem;
    }

    .subheadline {
        font-size: 1.2rem;
    }

    .cta-wrapper {
        flex-direction: column;
    }
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #F8F9FA;
    color: var(--color-text-secondary);
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--color-primary);
    color: #fff;
    transform: translateY(-3px);
}

/* Footer Support Section */
.footer-support {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    align-items: center;
}

.footer-contact-item {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-contact-item:hover {
    color: var(--color-primary);
    text-decoration: none;
}

/* Locations */
.location-block {
    margin-bottom: var(--spacing-md);
}

.location-title {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.location-title i {
    color: var(--color-primary);
    font-size: 1rem;
}

.location-address {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 10px;
}

.location-phone {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-phone:hover {
    color: var(--color-primary);
    text-decoration: none;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #F5F5F5;
}


/* Responsive */
@media (max-width: 768px) {
    .footer-sonic {
        padding: 60px 0 30px;
        text-align: left;
    }

    .footer-brand-large {
        font-size: 18vw;
        /* Larger on mobile relative to width */
        margin-bottom: var(--spacing-xl);
    }

    .footer-heading {
        margin-top: var(--spacing-md);
        margin-bottom: var(--spacing-md);
    }

    .location-block {
        margin-bottom: var(--spacing-lg);
    }
}



/* CTA WRAPPER */
.cta-wrapper {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* PRIMARY CTA */
.primary-cta,
.secondary-cta {
    display: inline-block;
    padding: 14px 26px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.primary-cta {
    background-color: #fff;
    color: #000;
}

.secondary-cta {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #fff;
}

/* HOVER EFFECTS */
.primary-cta:hover,
.secondary-cta:hover {
    transform: scale(1.05);
}

.secondary-cta:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* LOCATION PINS STYLES */
.location-pins {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    z-index: 2;
}

.pin {
    text-align: center;
    color: #fff;
    font-size: 1rem;
}

.pin img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.location-label {
    font-weight: 600;
    margin-bottom: 5px;
}

.pin p {
    font-size: 0.9rem;
    margin-top: 5px;
}

/* RESPONSIVE STYLES */
@media screen and (max-width: 768px) {
    .headline {
        font-size: 3rem;
    }

    .subheadline {
        font-size: 1.2rem;
    }

    .cta-wrapper {
        flex-direction: column;
    }

    .location-pins {
        flex-direction: column;
        gap: 20px;
    }
}

/* ============================
   Meeting Button
============================ */
.meeting-button {
    position: fixed;
    bottom: 160px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(0, 162, 255, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
}

.meeting-button:hover {
    background: var(--color-hover-primary);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 162, 255, 0.4);
    color: #fff;
    text-decoration: none;
}

.meeting-button:active {
    transform: translateY(-1px) scale(1.05);
}

/* ============================
   WhatsApp Contact Button
============================ */
.whatsapp-button {
    position: fixed;
    bottom: 95px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
}

.whatsapp-button:hover {
    background: #20BA5A;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
    color: #fff;
    text-decoration: none;
}

.whatsapp-button:active {
    transform: translateY(-1px) scale(1.05);
}

/* ============================
   Back to Top Button
============================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 162, 255, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-hover-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 162, 255, 0.4);
}

.back-to-top:active {
    transform: translateY(-1px);
}

/* Responsive adjustments for all buttons */
@media (max-width: 768px) {
    .meeting-button {
        bottom: 150px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .whatsapp-button {
        bottom: 85px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #F8F9FA;
    color: var(--color-text-secondary);
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--color-primary);
    color: #fff;
    transform: translateY(-3px);
}

/* Footer Support Section */
.footer-support {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    align-items: center;
}

.footer-contact-item {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-contact-item:hover {
    color: var(--color-primary);
    text-decoration: none;
}

/* Locations */
.location-block {
    margin-bottom: var(--spacing-md);
}

.location-title {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.location-title i {
    color: var(--color-primary);
    font-size: 1rem;
}

.location-address {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 10px;
}

.location-phone {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-phone:hover {
    color: var(--color-primary);
    text-decoration: none;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #F5F5F5;
}


/* Responsive */
@media (max-width: 768px) {
    .footer-sonic {
        padding: 60px 0 30px;
        text-align: left;
    }

    .footer-brand-large {
        font-size: 18vw;
        /* Larger on mobile relative to width */
        margin-bottom: var(--spacing-xl);
    }

    .footer-heading {
        margin-top: var(--spacing-md);
        margin-bottom: var(--spacing-md);
    }

    .location-block {
        margin-bottom: var(--spacing-lg);
    }
}



/* CTA WRAPPER */
.cta-wrapper {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* PRIMARY CTA */
.primary-cta,
.secondary-cta {
    display: inline-block;
    padding: 14px 26px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.primary-cta {
    background-color: #fff;
    color: #000;
}

.secondary-cta {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #fff;
}

/* HOVER EFFECTS */
.primary-cta:hover,
.secondary-cta:hover {
    transform: scale(1.05);
}

.secondary-cta:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* LOCATION PINS STYLES */
.location-pins {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    z-index: 2;
}

.pin {
    text-align: center;
    color: #fff;
    font-size: 1rem;
}

.pin img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.location-label {
    font-weight: 600;
    margin-bottom: 5px;
}

.pin p {
    font-size: 0.9rem;
    margin-top: 5px;
}
.footer-sonic h5{
    color: var(--color-primary);
}

/* Map Link in Footer */
.map-link {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    margin-top: 8px;
}

.map-link i {
    font-size: 0.875rem;
}

/* ============================
   MVP / APP DEVELOPMENT PAGE STYLES
============================ */

/* SECTION 1: MVP Header */
.mvp-header {
    background-color: #ffffff;
    padding: 180px 0 80px 0;
    min-height: 450px;
    display: flex;
    align-items: center;
}

.mvp-header-content {
    max-width: 650px;
}

.mvp-headline {
    font-family: var(--font-secondary);
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.mvp-subheadline {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text-primary);
    margin-bottom: 36px;
    max-width: 600px;
}

.mvp-cta-group {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.btn-mvp-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(27, 42, 78, 0.25);
}

.btn-mvp-primary:hover {
    background-color: var(--color-hover-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 42, 78, 0.35);
    color: #ffffff;
    text-decoration: none;
}

.btn-mvp-secondary {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-mvp-secondary:hover {
    color: var(--color-hover-primary);
    text-decoration: none;
}

.mvp-header-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.mvp-illustration {
    width: 100%;
    max-width: 400px;
    height: auto;
    opacity: 0.7;
}

/* SECTION 2: MVP Failures */
.mvp-failures-section {
    background-color: #f9fafb;
    padding: 80px 0;
}

.section-title-mvp {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.section-subtitle-mvp {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    color: var(--color-text-primary);
    margin-bottom: 0;
}

.failures-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.failure-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #ef4444;
}

.failure-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    font-size: 1.25rem;
}

.failure-text h4 {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.failure-text p {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-primary);
    margin-bottom: 0;
}

.prevention-block {
    background: linear-gradient(135deg, #1B2A4E 0%, #152038 100%);
    padding: 40px;
    border-radius: 12px;
    color: #ffffff;
}

.prevention-block h3 {
    font-family: var(--font-primary);
    font-size: 1.375rem;
    font-weight: 700;
    color: #FDB913;
    margin-bottom: 16px;
}

.prevention-block p {
    font-family: var(--font-primary);
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 0;
}

/* SECTION 3: Differentiators */
.mvp-differentiators-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.differentiator-block {
    padding: 32px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
}

.differentiator-block:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 8px 24px rgba(27, 42, 78, 0.08);
    transform: translateY(-4px);
}

.diff-title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.diff-description {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-primary);
    margin-bottom: 16px;
}

.diff-metric {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-secondary);
    padding: 6px 14px;
    background: rgba(253, 185, 19, 0.1);
    border-radius: 20px;
}

/* SECTION 4: MVP Types */
.mvp-types-section {
    background-color: #f9fafb;
    padding: 80px 0;
}

.mvp-type-tile {
    background: #ffffff;
    padding: 32px 24px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.mvp-type-tile:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 8px 20px rgba(27, 42, 78, 0.08);
    transform: translateY(-4px);
}

.type-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #1B2A4E 0%, #152038 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FDB913;
    font-size: 28px;
}

.type-title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.type-description {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-primary);
    margin-bottom: 12px;
}

.type-examples {
    font-family: var(--font-primary);
    color: var(--color-text-secondary);
    margin-bottom: 0;
}

/* SECTION 5: Framework (reusing process section styles with modifications) */
.mvp-framework-section {
    background: linear-gradient(180deg, #f3f4f6 0%, #e5e7eb 100%);
    padding: 80px 0;
}

.framework-steps-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.framework-step-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.step-deliverable {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
}

.step-deliverable strong {
    color: var(--color-primary);
}

/* SECTION 6: Portfolio */
.mvp-portfolio-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.portfolio-card-mvp {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px 28px;
    height: 100%;
    transition: all 0.3s ease;
}

.portfolio-card-mvp:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 8px 24px rgba(27, 42, 78, 0.08);
    transform: translateY(-4px);
}

.portfolio-card-title {
    font-family: var(--font-primary);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.portfolio-card-desc {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-primary);
    margin-bottom: 20px;
}

.portfolio-outcomes {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.portfolio-outcomes li {
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    color: var(--color-text-primary);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.portfolio-outcomes li i {
    color: #10b981;
    margin-top: 3px;
}

.portfolio-cta-link {
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.portfolio-cta-link:hover {
    color: var(--color-secondary);
    text-decoration: none;
}

.trusted-by-section {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #e5e7eb;
}

.trusted-by-label {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
}

.trusted-logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trusted-logo-box {
    padding: 16px 28px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.testimonial-card-mvp {
    background: #f9fafb;
    padding: 50px 60px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.testimonial-text-mvp {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-primary);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author-mvp {
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
}

.author-name-mvp {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.author-title-mvp {
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    margin-bottom: 0;
}

/* SECTION 7: Pricing */
.mvp-pricing-section {
    background-color: #f9fafb;
    padding: 80px 0;
}

.pricing-card-mvp {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px 32px;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card-mvp:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 12px 32px rgba(27, 42, 78, 0.12);
    transform: translateY(-6px);
}

.featured-pricing {
    border-color: var(--color-secondary);
    box-shadow: 0 8px 24px rgba(253, 185, 19, 0.15);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FDB913 0%, #E5A50D 100%);
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 20px;
    border-radius: 20px;
}

.pricing-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.pricing-ideal {
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

.pricing-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 24px 0;
}

.pricing-included {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.pricing-included li {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-text-primary);
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pricing-included li i {
    color: #10b981;
    margin-top: 4px;
    font-size: 1.125rem;
}

.btn-pricing-cta {
    display: block;
    width: 100%;
    background: var(--color-primary);
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-pricing-cta:hover {
    background: var(--color-hover-primary);
    transform: translateY(-2px);
    color: #ffffff;
    text-decoration: none;
}

.featured-pricing .btn-pricing-cta {
    background: linear-gradient(135deg, #FDB913 0%, #E5A50D 100%);
}

.featured-pricing .btn-pricing-cta:hover {
    background: linear-gradient(135deg, #E5A50D 0%, #D39B0B 100%);
}

/* SECTION 8: FAQ */
.mvp-faq-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 24px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-question h4 {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0;
}

.faq-icon {
    color: var(--color-secondary);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-primary);
    padding: 0 28px 24px 28px;
    margin-bottom: 0;
}

/* ============================
   Responsive for MVP Page
============================ */

@media (max-width: 991px) {
    .mvp-header {
        padding: 140px 0 60px 0;
    }

    .mvp-headline {
        font-size: 2.25rem;
    }

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

    .testimonial-card-mvp {
        padding: 40px 35px;
    }
}

@media (max-width: 767px) {
    .mvp-header {
        padding: 130px 0 50px 0;
        text-align: center;
    }

    .mvp-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-mvp-primary,
    .btn-mvp-secondary {
        width: 100%;
        justify-content: center;
    }

    .mvp-headline {
        font-size: 1.875rem;
    }

    .section-title-mvp {
        font-size: 1.75rem;
    }

    .failure-item {
        flex-direction: column;
        text-align: center;
    }

    .prevention-block {
        padding: 30px 25px;
    }

    .framework-step-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }

    .testimonial-card-mvp {
        padding: 30px 25px;
    }

    .testimonial-text-mvp {
        font-size: 1rem;
    }

    .trusted-logos-row {
        flex-direction: column;
        gap: 16px;
    }

    .trusted-logo-box {
        width: 100%;
    }
}

/* ============================
   CASE STUDIES PAGE STYLES
============================ */

/* Header Section */
.case-studies-header {
    background-color: #ffffff;
    padding: 180px 0 60px 0;
    text-align: center;
}

.case-studies-title {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.case-studies-subtitle {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--color-text-primary);
    max-width: 700px;
    margin: 0 auto;
}

/* Grid Section */
.case-studies-grid-section {
    background-color: #f9fafb;
    padding: 80px 0;
}

/* Masonry Grid Layout */
.case-studies-masonry {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Card Sizes */
.case-study-card {
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.case-study-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* Large Card - Spans 2 columns */
.large-card {
    grid-column: span 2;
    flex-direction: row;
    min-height: 450px;
}

.large-card .case-card-image {
    flex: 1;
}

.large-card .case-card-content {
    flex: 1;
}

/* Medium Card - Spans 1 column but taller */
.medium-card {
    grid-column: span 1;
    flex-direction: column;
    min-height: 550px;
}

.medium-card .case-card-image {
    flex: 1;
}

.medium-card .case-card-content {
    flex: 1;
}

/* Small Card - Spans 1 column, shorter */
.small-card {
    grid-column: span 1;
    flex-direction: column;
    min-height: 400px;
}

.small-card .case-card-image {
    flex: 0.8;
}

.small-card .case-card-content {
    flex: 1.2;
}

/* Card Image */
.case-card-image {
    position: relative;
    overflow: hidden;
    background: #e5e7eb;
}

.case-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-img-contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 40px;
    background: #ffffff;
}

.case-study-card:hover .case-img {
    transform: scale(1.05);
}

/* Card Content */
.case-card-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Background Variations */
.navy-bg {
    background: linear-gradient(135deg, #1B2A4E 0%, #152038 100%);
}

.golden-bg {
    background: linear-gradient(135deg, #FDB913 0%, #E5A50D 100%);
}

.white-bg {
    background: #ffffff;
}

/* Badge */
.case-badge {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(253, 185, 19, 0.2);
    color: #FDB913;
    margin-bottom: 20px;
}

.golden-badge {
    background: rgba(27, 42, 78, 0.15);
    color: var(--color-primary);
}

.navy-badge {
    background: rgba(27, 42, 78, 0.2);
    color: #1B2A4E;
}

/* Case Title */
.case-title {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 16px;
}

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

/* Case Description */
.case-description {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.dark-text.case-description {
    color: var(--color-text-primary) !important;
}

/* Read More Link */
.case-read-more {
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #FDB913;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.case-read-more:hover {
    color: #ffffff;
    text-decoration: none;
    transform: translateX(4px);
}

.dark-link {
    color: var(--color-primary) !important;
}

.dark-link:hover {
    color: var(--color-hover-primary) !important;
}

.case-read-more i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.case-read-more:hover i {
    transform: translateX(4px);
}

/* ============================
   Responsive for Case Studies
============================ */

/* Tablets */
@media (max-width: 991px) {
    .case-studies-header {
        padding: 140px 0 50px 0;
    }

    .case-studies-title {
        font-size: 2.5rem;
    }

    .case-studies-subtitle {
        font-size: 1.125rem;
    }

    .case-studies-masonry {
        grid-template-columns: 1fr;
    }

    .large-card {
        grid-column: span 1;
        flex-direction: column;
        min-height: auto;
    }

    .medium-card,
    .small-card {
        grid-column: span 1;
        min-height: auto;
    }

    .case-card-content {
        padding: 32px;
    }

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

/* Mobile */
@media (max-width: 767px) {
    .case-studies-header {
        padding: 130px 0 40px 0;
    }

    .case-studies-title {
        font-size: 2rem;
    }

    .case-studies-subtitle {
        font-size: 1rem;
    }

    .case-studies-grid-section {
        padding: 60px 0;
    }

    .case-card-content {
        padding: 28px 24px;
    }

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

    .case-description {
        font-size: 0.9375rem;
    }

    .case-badge {
        font-size: 0.6875rem;
        padding: 6px 12px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .case-studies-title {
        font-size: 1.75rem;
    }

    .case-card-content {
        padding: 24px 20px;
    }
}

/* ============================
   Enterprise Header Section
============================ */

.enterprise-header {
    background-color: #ffffff;
    padding: 180px 0 80px 0;
    min-height: 450px;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 0;
}

.header-content {
    max-width: 650px;
}

/* Eyebrow Label */
.eyebrow-label {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Primary Headline */
.enterprise-headline {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

/* Supporting Subheadline */
.enterprise-subheadline {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text-primary);
    margin-bottom: 36px;
    max-width: 600px;
    font-weight: 400;
}

/* CTA Group */
.header-cta-group {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

/* Primary CTA Button */
.btn-enterprise-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(108, 99, 255, 0.25);
    border: none;
}

.btn-enterprise-primary:hover {
    background-color: #5A52D5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 99, 255, 0.35);
    color: #ffffff;
    text-decoration: none;
}

.btn-enterprise-primary:active {
    transform: translateY(0);
}

/* Secondary CTA (Text Link) */
.btn-enterprise-secondary {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.btn-enterprise-secondary::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--color-secondary);
    transition: width 0.3s ease;
}

.btn-enterprise-secondary:hover {
    color: var(--color-hover-primary);
    text-decoration: none;
}

.btn-enterprise-secondary:hover::after {
    width: calc(100% - 30px);
}

.btn-enterprise-secondary i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.btn-enterprise-secondary:hover i {
    transform: translateX(4px);
}

/* Trust Line */
.trust-line {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    font-weight: 400;
    font-style: italic;
}

/* Right Side Visual */
.header-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.ai-illustration {
    width: 100%;
    max-width: 400px;
    height: auto;
    opacity: 0.6;
}

/* ============================
   Responsive Design
============================ */

/* Large Tablets and Small Desktops */
@media (max-width: 1199px) {
    .enterprise-header {
        padding: 160px 0 70px 0;
    }
    
    .enterprise-headline {
        font-size: 2.5rem;
    }
    
    .enterprise-subheadline {
        font-size: 1.0625rem;
    }
}

/* Tablets */
@media (max-width: 991px) {
    .enterprise-header {
        padding: 140px 0 60px 0;
        min-height: auto;
        text-align: center;
    }
    
    .header-content {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .enterprise-headline {
        font-size: 2.25rem;
    }
    
    .enterprise-subheadline {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .header-cta-group {
        justify-content: center;
    }
    
    .eyebrow-label {
        text-align: center;
    }
    
    .trust-line {
        text-align: center;
    }
}

/* Mobile Devices */
@media (max-width: 767px) {
    .enterprise-header {
        padding: 130px 0 50px 0;
    }
    
    .enterprise-headline {
        font-size: 1.875rem;
        margin-bottom: 20px;
    }
    
    .enterprise-subheadline {
        font-size: 0.9375rem;
        margin-bottom: 30px;
    }
    
    .header-cta-group {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }
    
    .btn-enterprise-primary,
    .btn-enterprise-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .eyebrow-label {
        font-size: 0.6875rem;
        margin-bottom: 16px;
    }
    
    .trust-line {
        font-size: 0.8125rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 575px) {
    .enterprise-header {
        padding: 120px 0 40px 0;
    }
    
    .enterprise-headline {
        font-size: 1.625rem;
        line-height: 1.3;
    }
    
    .btn-enterprise-primary {
        padding: 14px 28px;
        font-size: 0.9375rem;
    }
}

/* ============================
   Core Business Solutions Section
============================ */

.solutions-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.section-title-enterprise {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
    text-align: center;
}

.section-intro-enterprise {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text-primary);
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.solutions-grid {
    margin-top: 40px;
}

.solution-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.solution-card:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 8px 24px rgba(27, 42, 78, 0.08);
    transform: translateY(-4px);
}

.solution-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1B2A4E 0%, #152038 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.solution-icon i {
    font-size: 28px;
    color: #FDB913;
}

.solution-title {
    font-family: var(--font-primary);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.solution-description {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-primary);
    margin-bottom: 20px;
}

.solution-link {
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.solution-link:hover {
    color: var(--color-secondary);
    text-decoration: none;
    transform: translateX(4px);
}

.solution-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.solution-link:hover i {
    transform: translateX(4px);
}

/* ============================
   Impact Section - Redesigned with Visual
============================ */

.impact-section {
    background-color: #ffffff;
    padding: 100px 0;
}

/* Left Side - Illustration Image */
.impact-visual {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.impact-illustration-img {
    width: 100%;
    max-width: 550px;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    filter: drop-shadow(0 20px 40px rgba(27, 42, 78, 0.15));
}

/* Right Side - Content */
.impact-content {
    padding-left: 40px;
}

.impact-section-title {
    font-family: var(--font-secondary);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.impact-section-subtitle {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--color-text-primary);
    margin-bottom: 40px;
}

/* Impact Items List */
.impact-items-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

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

/* Icon Badge with Number */
.impact-icon-badge {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(253, 185, 19, 0.3);
}

.impact-badge-number {
    font-family: var(--font-secondary);
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
}

/* Item Text */
.impact-item-text {
    flex: 1;
}

.impact-item-title {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 6px;
    line-height: 1.4;
}

.impact-item-desc {
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-text-primary);
    margin-bottom: 0;
}

/* CTA Button */
.impact-cta {
    margin-top: 32px;
}

.btn-impact-cta {
    display: inline-block;
    background: var(--color-primary);
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(253, 185, 19, 0.3);
    transition: all 0.3s ease;
}

.btn-impact-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 185, 19, 0.4);
    color: #ffffff;
    text-decoration: none;
}

/* ============================
   Responsive Design for Impact Section
============================ */

/* Tablets */
@media (max-width: 991px) {
    .impact-section {
        padding: 80px 0;
    }

    .impact-visual {
        margin-bottom: 40px;
        padding: 10px;
    }

    .impact-illustration-img {
        max-width: 450px;
    }

    .impact-content {
        padding-left: 0;
    }

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

    .impact-section-subtitle {
        font-size: 1rem;
    }
}

/* Mobile Devices */
@media (max-width: 767px) {
    .impact-section {
        padding: 60px 0;
    }

    .impact-visual {
        margin-bottom: 40px;
        padding: 0;
    }

    .impact-illustration-img {
        max-width: 100%;
        border-radius: 12px;
    }

    .impact-section-title {
        font-size: 1.75rem;
    }

    .impact-section-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 32px;
    }

    .impact-items-list {
        gap: 20px;
        margin-bottom: 32px;
    }

    .impact-icon-badge {
        width: 44px;
        height: 44px;
    }

    .impact-badge-number {
        font-size: 1rem;
    }

    .impact-item-title {
        font-size: 1.0625rem;
    }

    .impact-item-desc {
        font-size: 0.875rem;
    }

    .btn-impact-cta {
        width: 100%;
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .impact-list-item {
        gap: 16px;
    }

    .impact-icon-badge {
        width: 40px;
        height: 40px;
    }

    .impact-badge-number {
        font-size: 0.9375rem;
    }
}

/* ============================
   Process Section - Redesigned Card Layout
============================ */

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

.process-steps-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.process-step-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

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

/* Circular Badge */
.step-badge {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(253, 185, 19, 0.3);
}

.step-badge-number {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

/* Icon Wrapper */
.step-icon-wrapper {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(27, 42, 78, 0.05) 0%, rgba(21, 32, 56, 0.08) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    font-size: 36px;
    color: var(--color-primary);
    opacity: 0.7;
}

/* Card Content */
.step-card-content {
    flex: 1;
}

.step-card-title {
    font-family: var(--font-primary);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.step-card-description {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-primary);
    margin-bottom: 0;
}

/* CTA Button */
.btn-process-cta {
    display: inline-block;
    background: var(--color-primary);
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-process-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(253, 185, 19, 0.45);
    color: #ffffff;
    text-decoration: none;
}

.btn-process-cta:active {
    transform: translateY(0);
}

/* ============================
   Responsive Design for Process Section
============================ */

/* Tablets */
@media (max-width: 991px) {
    .process-step-card {
        padding: 30px 30px;
        gap: 24px;
    }

    .step-badge {
        width: 50px;
        height: 50px;
    }

    .step-badge-number {
        font-size: 1.375rem;
    }

    .step-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .step-icon {
        font-size: 32px;
    }

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

    .step-card-description {
        font-size: 0.9375rem;
    }
}

/* Mobile Devices */
@media (max-width: 767px) {
    .process-section {
        padding: 60px 0;
    }

    .process-steps-container {
        gap: 20px;
    }

    .process-step-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
        gap: 20px;
    }

    .step-badge {
        width: 48px;
        height: 48px;
    }

    .step-badge-number {
        font-size: 1.25rem;
    }

    .step-icon-wrapper {
        width: 64px;
        height: 64px;
    }

    .step-icon {
        font-size: 28px;
    }

    .step-card-title {
        font-size: 1.125rem;
    }

    .step-card-description {
        font-size: 0.9375rem;
    }

    .btn-process-cta {
        font-size: 1rem;
        padding: 16px 40px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .process-step-card {
        padding: 25px 20px;
    }

    .step-icon-wrapper {
        width: 56px;
        height: 56px;
    }

    .step-icon {
        font-size: 24px;
    }
}

/* ============================
   Trust & Authority Section
============================ */

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

.testimonial-card-enterprise {
    background: #ffffff;
    padding: 50px 60px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    position: relative;
    box-shadow: 0 4px 16px rgba(27, 42, 78, 0.06);
}

.testimonial-quote-icon {
    font-size: 3rem;
    color: var(--color-secondary);
    opacity: 0.2;
    margin-bottom: 20px;
}

.testimonial-text {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-primary);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-info {
    flex: 1;
}

.author-name {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.author-title {
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    margin-bottom: 0;
}

/* Client Logos */
.client-logos {
    text-align: center;
    margin-top: 60px;
}

.logos-label {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.logo-placeholder {
    width: 140px;
    height: 60px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    color: #d1d5db;
    font-weight: 600;
}

/* ============================
   Partner Logos Section
============================ */

.partner-logos-section {
    text-align: center;
    padding: 50px 0 20px;
    border-top: 1px solid #e5e7eb;
}

.partner-logos-label {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    max-width: none;
}

.partner-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-logo-item {
    width: 100%;
    max-width: 180px;
    height: 80px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.partner-logo-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(27, 42, 78, 0.12);
    border-color: var(--color-secondary);
}

.partner-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-logo-item:hover .partner-logo-img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============================
   Responsive for Partner Logos
============================ */

@media (max-width: 991px) {
    .partner-logos-section {
        padding: 40px 0 20px;
    }

    .partner-logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 30px;
    }

    .partner-logo-item {
        max-width: 160px;
        height: 70px;
        padding: 16px;
    }
}

@media (max-width: 767px) {
    .partner-logos-section {
        padding: 30px 0 10px;
    }

    .partner-logos-label {
        font-size: 0.8125rem;
        margin-bottom: 30px;
    }

    .partner-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .partner-logo-item {
        max-width: 100%;
        height: 65px;
        padding: 14px;
    }
}

@media (max-width: 575px) {
    .partner-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .partner-logo-item {
        height: 60px;
        padding: 12px;
    }
}

/* ============================
   Responsive Design for New Sections
============================ */

/* Tablets */
@media (max-width: 991px) {
    .section-title-enterprise {
        font-size: 2rem;
    }

    .section-intro-enterprise {
        font-size: 1rem;
    }

    .solution-card,
    .impact-item {
        margin-bottom: 20px;
    }

    .testimonial-card-enterprise {
        padding: 40px 35px;
    }

    .testimonial-text {
        font-size: 1.125rem;
    }

    .process-timeline {
        padding: 0 20px;
    }
}

/* Mobile Devices */
@media (max-width: 767px) {
    .solutions-section,
    .impact-section,
    .process-section,
    .trust-section {
        padding: 60px 0;
    }

    .section-title-enterprise {
        font-size: 1.75rem;
    }

    .section-intro-enterprise {
        font-size: 0.9375rem;
        margin-bottom: 40px;
    }

    .solution-card {
        padding: 30px 25px;
    }

    .solution-icon {
        width: 56px;
        height: 56px;
    }

    .solution-icon i {
        font-size: 24px;
    }

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

    .impact-item {
        padding: 30px 25px;
    }

    .impact-number {
        font-size: 2rem;
    }

    .impact-title {
        font-size: 1.125rem;
    }

    .process-step {
        gap: 20px;
        margin-bottom: 40px;
    }

    .process-step:not(:last-child)::after {
        left: 27px;
        top: 60px;
    }

    .step-number {
        width: 56px;
        height: 56px;
        font-size: 1.125rem;
    }

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

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

    .testimonial-card-enterprise {
        padding: 30px 25px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .logos-grid {
        gap: 30px;
    }

    .logo-placeholder {
        width: 120px;
        height: 50px;
    }
}