/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* Typography - Mobile First */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

/* Tablet and up */
@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.75rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    h1 {
        font-size: 3.5rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    h3 {
        font-size: 1.8rem;
    }
    
    h4 {
        font-size: 1.4rem;
    }
}

p {
    margin-bottom: 1rem;
    color: #666666;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Buttons - Mobile First */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    text-align: center;
}

@media (min-width: 768px) {
    .btn {
        width: auto;
        padding: 12px 24px;
        font-size: 1rem;
    }
}

.btn-primary {
    background: #11b981;
    color: white;
    box-shadow: 0 4px 15px rgba(17, 185, 129, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 185, 129, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #11b981;
    border: 2px solid #11b981;
}

.btn-secondary:hover {
    background: #11b981;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #e0e0e0;
}

.btn-outline:hover {
    border-color: #11b981;
    color: #11b981;
}

/* Header - Mobile First */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f0f0f0;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: #1a1a1a;
    z-index: 1001;
}

@media (min-width: 768px) {
    .nav-brand {
        gap: 0.75rem;
        font-size: 1.25rem;
    }
}

.logo {
    width: 40px;
    height: 40px;
}

@media (min-width: 768px) {
    .logo {
        width: 50px;
        height: 50px;
    }
}

/* Mobile Navigation */
.nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
}

.nav-menu.active {
    transform: translateX(0);
}

@media (min-width: 768px) {
    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        backdrop-filter: none;
        transform: none;
        transition: none;
    }
    
    .nav-menu.active {
        transform: none;
    }
}

nav a:focus,
nav a:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.nav-list {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .nav-list {
        flex-direction: row;
        gap: 2rem;
    }
}

.nav-link {
    font-weight: 500;
    color: #666666;
    transition: color 0.3s ease;
    padding: 1rem;
    position: relative;
    font-size: 1.1rem;
}

@media (min-width: 768px) {
    .nav-link {
        padding: 0.5rem 0;
        font-size: 1rem;
    }
}

.nav-link:hover,
.nav-link.active {
    color: #11b981;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: #11b981;
    border-radius: 1px;
}

@media (min-width: 768px) {
    .nav-link.active::after {
        bottom: -2px;
        left: 0;
        transform: none;
        width: 100%;
    }
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(17, 185, 129, 0.1);
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Main Hero Banner - Mobile First */
.main-hero {
    position: relative;
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #000;
    background: url('https://images.unsplash.com/photo-1593642634315-48f5414c3ad9?auto=format&fit=crop&w=800&q=80') 
                center/cover no-repeat;
    margin-top: 70px;
}

@media (min-width: 768px) {
    .main-hero {
        min-height: 70vh;
        background: url('https://images.unsplash.com/photo-1593642634315-48f5414c3ad9?auto=format&fit=crop&w=1600&q=80') 
                    center/cover no-repeat;
        margin-top: 80px;
    }
}

.main-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(46, 45, 45, 0.7);
    z-index: 1;
}

.main-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 20px 16px;
}

@media (min-width: 768px) {
    .main-hero-container {
        padding: 40px 20px;
    }
}

.main-hero-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 16px;
    line-height: 1.2;
    color: #eee8e8;
}

@media (min-width: 768px) {
    .main-hero-title {
        font-size: 3rem;
        margin-bottom: 20px;
    }
}

@media (min-width: 1024px) {
    .main-hero-title {
        font-size: 52px;
    }
}

.main-hero-title span {
    color: #11b981;
}

.main-hero-subtitle {
    font-size: 1rem;
    margin-bottom: 24px;
    color: #f0eaea;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .main-hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 30px;
    }
}

@media (min-width: 1024px) {
    .main-hero-subtitle {
        font-size: 20px;
    }
}

.main-hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

@media (min-width: 768px) {
    .main-hero-buttons {
        flex-direction: row;
        gap: 20px;
        justify-content: center;
    }
}

.main-hero .btn-primary {
    background: #11b981;
    color: #fff;
    padding: 14px 24px;
    font-size: 14px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
    width: 100%;
    max-width: 280px;
}

@media (min-width: 768px) {
    .main-hero .btn-primary {
        padding: 14px 30px;
        font-size: 16px;
        width: auto;
    }
}

.main-hero .btn-primary:hover {
    background: #0ea472;
}

.main-hero .btn-secondary {
    background: #ffffff;
    color: #11b981;
    padding: 14px 24px;
    font-size: 14px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    border: 2px solid #11b981;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 280px;
}

@media (min-width: 768px) {
    .main-hero .btn-secondary {
        padding: 14px 30px;
        font-size: 16px;
        width: auto;
    }
}

.main-hero .btn-secondary:hover {
    background: #11b981;
    color: #fff;
}

/* Hero Section - Mobile First */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

@media (min-width: 768px) {
    .hero {
        padding: 100px 0 80px;
        margin-top: 80px;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 120px 0 80px;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(17, 185, 129, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 1024px) {
    .hero .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        text-align: left;
    }
}

.hero-content {
    z-index: 2;
    position: relative;
    order: 2;
}

@media (min-width: 1024px) {
    .hero-content {
        order: 1;
    }
}

.hero-badge {
    display: inline-block;
    background: #11b981;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (min-width: 768px) {
    .hero-badge {
        padding: 6px 16px;
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #11b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
}

.hero-description {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 1024px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 300px;
}

@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
        width: auto;
        max-width: none;
    }
}

.hero-image {
    position: relative;
    z-index: 2;
    order: 1;
    width: 100%;
    max-width: 400px;
}

@media (min-width: 1024px) {
    .hero-image {
        order: 2;
        max-width: none;
    }
}

/* Dashboard Mockup - Mobile Responsive */
.dashboard-mockup {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: none;
    transition: transform 0.3s ease;
    width: 100%;
}

@media (min-width: 768px) {
    .dashboard-mockup {
        border-radius: 16px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    }
}

@media (min-width: 1024px) {
    .dashboard-mockup {
        transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    }
    
    .dashboard-mockup:hover {
        transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
    }
}

.dashboard-header {
    background: #f8faff;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e8ecf4;
}

@media (min-width: 768px) {
    .dashboard-header {
        padding: 1rem 1.5rem;
    }
}

.dashboard-tabs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 768px) {
    .dashboard-tabs {
        gap: 1rem;
        overflow-x: visible;
    }
}

.tab {
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #666666;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .tab {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

.tab.active {
    background: white;
    color: #11b981;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dashboard-content {
    padding: 1.5rem 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

@media (min-width: 768px) {
    .dashboard-content {
        padding: 2rem 1.5rem;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
}

.metric-card {
    text-align: center;
}

.metric-card h4 {
    font-size: 0.75rem;
    color: #666666;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

@media (min-width: 768px) {
    .metric-card h4 {
        font-size: 0.875rem;
    }
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    display: block;
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .metric-value {
        font-size: 2rem;
    }
}

.metric-change {
    font-size: 0.75rem;
    font-weight: 500;
}

@media (min-width: 768px) {
    .metric-change {
        font-size: 0.875rem;
    }
}

.metric-change.positive {
    color: #10b981;
}

.metric-change.negative {
    color: #ef4444;
}

/* Page Hero - Mobile First */
.page-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    text-align: center;
    margin-top: 70px;
}

@media (min-width: 768px) {
    .page-hero {
        padding: 120px 0 80px;
        margin-top: 80px;
    }
}

@media (min-width: 1024px) {
    .page-hero {
        padding: 140px 0 80px;
    }
}

.page-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ededed 0%, #edefee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .page-hero-content h1 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .page-hero-content h1 {
        font-size: 3.5rem;
    }
}

.page-hero-content p {
    font-size: 1rem;
    color: rgb(230, 229, 229);
    max-width: 90%;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .page-hero-content p {
        font-size: 1.125rem;
        max-width: 600px;
    }
}

@media (min-width: 1024px) {
    .page-hero-content p {
        font-size: 1.25rem;
    }
}

/* Sections - Mobile First */
section {
    padding: 60px 0;
}

@media (min-width: 768px) {
    section {
        padding: 80px 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 3rem;
        max-width: 700px;
    }
}

@media (min-width: 1024px) {
    .section-header {
        margin-bottom: 4rem;
    }
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-description {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .section-description {
        font-size: 1.125rem;
    }
}

.section-cta {
    text-align: center;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .section-cta {
        margin-top: 3rem;
    }
}

/* Company Intro - Mobile First */
.company-intro {
    background: #fafbff;
}

.intro-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .intro-features {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
        margin-top: 3rem;
    }
}

@media (min-width: 1024px) {
    .intro-features {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 3rem;
    }
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .feature-item {
        padding: 2rem;
    }
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #11b981;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

@media (min-width: 768px) {
    .feature-icon {
        width: 80px;
        height: 80px;
        border-radius: 16px;
        margin-bottom: 1.5rem;
    }
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

@media (min-width: 768px) {
    .feature-icon svg {
        width: 32px;
        height: 32px;
    }
}

.feature-item h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

/* Services - Mobile First */
.services-preview,
.services-overview {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
}

.service-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

@media (min-width: 768px) {
    .service-card {
        padding: 2.5rem 2rem;
    }
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #11b981;
}

@media (min-width: 1024px) {
    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }
}

.service-icon {
    width: 48px;
    height: 48px;
    background: #11b981;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
}

@media (min-width: 768px) {
    .service-icon {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        margin-bottom: 1.5rem;
    }
}

.service-icon svg {
    width: 20px;
    height: 20px;
}

@media (min-width: 768px) {
    .service-icon svg {
        width: 24px;
        height: 24px;
    }
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    color: #666666;
    line-height: 1.6;
}

/* Service Details - Mobile First */
.service-detail {
    padding: 60px 0;
}

@media (min-width: 768px) {
    .service-detail {
        padding: 80px 0;
    }
}

@media (min-width: 1024px) {
    .service-detail {
        padding: 100px 0;
    }
}

.service-detail.alt {
    background: #fafbff;
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 1024px) {
    .service-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        text-align: left;
    }
}

.service-icon-large {
    width: 60px;
    height: 60px;
    background: #11b981;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

@media (min-width: 768px) {
    .service-icon-large {
        width: 80px;
        height: 80px;
        border-radius: 16px;
        margin-bottom: 2rem;
    }
}

.service-icon-large svg {
    width: 24px;
    height: 24px;
}

@media (min-width: 768px) {
    .service-icon-large svg {
        width: 32px;
        height: 32px;
    }
}

.service-lead {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .service-lead {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 1024px) {
    .service-lead {
        font-size: 1.25rem;
    }
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .service-features {
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .service-features {
        gap: 2rem;
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
    padding: 0;
}

@media (min-width: 768px) {
    .feature-item {
        gap: 1rem;
    }
}

.feature-item svg {
    color: #10b981;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

@media (min-width: 768px) {
    .feature-item svg {
        width: 20px;
        height: 20px;
    }
}

.feature-item span {
    color: #666666;
    font-weight: 500;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .feature-item span {
        font-size: 1rem;
    }
}

/* Feature Mockups - Mobile Responsive */
.feature-mockup {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
}

@media (min-width: 768px) {
    .feature-mockup {
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    }
}

.mockup-header {
    background: #f8faff;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e8ecf4;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .mockup-header {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

.mockup-content {
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .mockup-content {
        padding: 2rem;
    }
}

/* Map Interface - Mobile Responsive */
.map-interface {
    background: #f0f9ff;
    border-radius: 8px;
    padding: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

@media (min-width: 768px) {
    .map-interface {
        padding: 2rem;
        height: 120px;
    }
}

.map-marker {
    width: 24px;
    height: 24px;
    background: #11b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: pulse 2s infinite;
}

@media (min-width: 768px) {
    .map-marker {
        width: 32px;
        height: 32px;
    }
}

.map-marker.active {
    background: #10b981;
    animation: bounce 1s infinite;
}

.tracking-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .tracking-info {
        font-size: 0.875rem;
        flex-wrap: nowrap;
        gap: 0;
    }
}

.status-online {
    color: #10b981;
    font-weight: 600;
}

.speed {
    color: #1a1a1a;
    font-weight: 600;
}

/* Fleet Stats - Mobile Responsive */
.fleet-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .fleet-stats {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
}

.stat-box {
    flex: 1;
    background: #f8faff;
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
}

@media (min-width: 768px) {
    .stat-box {
        padding: 1rem;
    }
}

.stat-label {
    font-size: 0.625rem;
    color: #666666;
    display: block;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (min-width: 768px) {
    .stat-label {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
}

@media (min-width: 768px) {
    .stat-value {
        font-size: 1.5rem;
    }
}

.stat-value.warning {
    color: #f59e0b;
}

.vehicle-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vehicle-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f8faff;
    border-radius: 6px;
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .vehicle-item {
        font-size: 0.875rem;
    }
}

.status {
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.625rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (min-width: 768px) {
    .status {
        padding: 0.25rem 0.75rem;
        font-size: 0.75rem;
    }
}

.status.active {
    background: #dcfce7;
    color: #166534;
}

.status.idle {
    background: #fef3c7;
    color: #92400e;
}

/* Asset Grid - Mobile Responsive */
.asset-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .asset-grid {
        gap: 1rem;
    }
}

.asset-item {
    background: #f8faff;
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .asset-item {
        padding: 1rem;
    }
}

.asset-item svg {
    width: 20px;
    height: 20px;
}

@media (min-width: 768px) {
    .asset-item svg {
        width: 24px;
        height: 24px;
    }
}

.asset-item.secure svg {
    color: #10b981;
}

.asset-item.alert svg {
    color: #ef4444;
}

.status-secure {
    color: #10b981;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .status-secure {
        font-size: 0.75rem;
    }
}

.status-alert {
    color: #ef4444;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .status-alert {
        font-size: 0.75rem;
    }
}

/* Analytics Chart - Mobile Responsive */
.analytics-chart {
    display: flex;
    align-items: end;
    justify-content: space-around;
    height: 80px;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f8faff;
    border-radius: 8px;
}

@media (min-width: 768px) {
    .analytics-chart {
        height: 100px;
        padding: 1rem;
    }
}

.chart-bar {
    width: 16px;
    background: #11b981;
    border-radius: 2px;
    transition: height 0.3s ease;
}

@media (min-width: 768px) {
    .chart-bar {
        width: 20px;
    }
}

.insights {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #10b981;
    font-weight: 500;
}

@media (min-width: 768px) {
    .insights {
        font-size: 0.875rem;
    }
}

/* Integration Network - Mobile Responsive */
.integration-network {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100px;
    margin: 1rem 0;
}

@media (min-width: 768px) {
    .integration-network {
        height: 120px;
    }
}

.central-node {
    width: 48px;
    height: 48px;
    background: #11b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    position: absolute;
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .central-node {
        width: 60px;
        height: 60px;
        font-size: 0.875rem;
    }
}

.integration-node {
    width: 32px;
    height: 32px;
    background: #f0f9ff;
    border: 2px solid #11b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    font-weight: 600;
    color: #11b981;
    position: absolute;
}

@media (min-width: 768px) {
    .integration-node {
        width: 40px;
        height: 40px;
        font-size: 0.75rem;
    }
}

.integration-node:nth-child(2) { top: 0; left: 50%; transform: translateX(-50%); }
.integration-node:nth-child(3) { bottom: 0; left: 50%; transform: translateX(-50%); }
.integration-node:nth-child(4) { top: 50%; right: 0; transform: translateY(-50%); }

/* Partnership Section - Mobile First */
.partnership-preview {
    background: #fafbff;
    border-top: 1px solid #e8ecf4;
    border-bottom: 1px solid #e8ecf4;
}

.partnership-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 1024px) {
    .partnership-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        text-align: left;
    }
}

.partnership-badge {
    display: inline-block;
    background: #11b981;
    color: white;
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 0.625rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (min-width: 768px) {
    .partnership-badge {
        padding: 4px 12px;
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }
}

.partnership-text h2 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

@media (min-width: 768px) {
    .partnership-text h2 {
        margin-bottom: 1.5rem;
    }
}

.partnership-text p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .partnership-text p {
        margin-bottom: 2rem;
        font-size: 1.125rem;
    }
}

.partnership-logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .partnership-logos {
        flex-direction: row;
        gap: 2rem;
    }
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .logo-container {
        gap: 1rem;
    }
}

.partner-logo {
    width: 60px;
    height: 60px;
}

@media (min-width: 768px) {
    .partner-logo {
        width: 80px;
        height: 80px;
    }
}

.growtharise-logo {
    width: 60px;
    height: 60px;
    background: #11b981;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

@media (min-width: 768px) {
    .growtharise-logo {
        width: 80px;
        height: 80px;
        border-radius: 16px;
        font-size: 1.5rem;
    }
}

.partnership-connector {
    color: #11b981;
    font-size: 1.25rem;
    transform: rotate(90deg);
}

@media (min-width: 768px) {
    .partnership-connector {
        font-size: 1.5rem;
        transform: none;
    }
}

/* Partnership Page Styles - Mobile First */
.partnership-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    text-align: center;
    margin-top: 70px;
}

@media (min-width: 768px) {
    .partnership-hero {
        padding: 120px 0 100px;
        margin-top: 80px;
    }
}

@media (min-width: 1024px) {
    .partnership-hero {
        padding: 140px 0 100px;
    }
}

.partnership-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f2efef 0%, #f9fafa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .partnership-hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .partnership-hero-content h1 {
        font-size: 4rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #f7f8f7;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 3rem;
    }
}

.partnership-logos-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .partnership-logos-large {
        flex-direction: row;
        gap: 2.5rem;
        margin-top: 3rem;
    }
}

@media (min-width: 1024px) {
    .partnership-logos-large {
        gap: 3rem;
    }
}

.partner-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .partner-logo-container {
        gap: 1rem;
    }
}

.partner-logo-large {
    width: 80px;
    height: 80px;
}

@media (min-width: 768px) {
    .partner-logo-large {
        width: 100px;
        height: 100px;
    }
}

.growtharise-logo-large {
    width: 80px;
    height: 80px;
    background: #11b981;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    .growtharise-logo-large {
        width: 100px;
        height: 100px;
        border-radius: 20px;
        font-size: 2rem;
    }
}

.partner-name {
    font-weight: 600;
    color: #eeeeee;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .partner-name {
        font-size: 1rem;
    }
}

.partner-tagline {
    font-size: 0.75rem;
    color: #ffffff;
}

@media (min-width: 768px) {
    .partner-tagline {
        font-size: 0.875rem;
    }
}

.partnership-plus {
    color: #11b981;
    font-size: 1.5rem;
    transform: rotate(90deg);
}

@media (min-width: 768px) {
    .partnership-plus {
        font-size: 2rem;
        transform: none;
    }
}

/* Partnership Story - Mobile First */
.partnership-story {
    padding: 60px 0;
    background: white;
}

@media (min-width: 768px) {
    .partnership-story {
        padding: 80px 0;
    }
}

@media (min-width: 1024px) {
    .partnership-story {
        padding: 100px 0;
    }
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .story-content {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 4rem;
    }
}

.story-text {
    max-width: none;
}

.story-text h2 {
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .story-text h2 {
        margin-bottom: 1.5rem;
    }
}

.story-text .lead {
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .story-text .lead {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .story-text .lead {
        font-size: 1.25rem;
    }
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    width: 100%;
}

@media (min-width: 1024px) {
    .story-stats {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        width: auto;
    }
}

.stat-card {
    background: #11b981;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    color: #000000;
}

@media (min-width: 768px) {
    .stat-card {
        padding: 2rem;
    }
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #11b981;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }
}

.stat-label {
    color: #666666;
    font-weight: 500;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .stat-label {
        font-size: 1rem;
    }
}

/* Partner Contributions - Mobile First */
.partner-contributions {
    padding: 60px 0;
    background: #fafbff;
}

@media (min-width: 768px) {
    .partner-contributions {
        padding: 80px 0;
    }
}

@media (min-width: 1024px) {
    .partner-contributions {
        padding: 100px 0;
    }
}

.contributions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .contributions-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        margin-top: 3rem;
    }
}

@media (min-width: 1024px) {
    .contributions-grid {
        gap: 3rem;
    }
}

.contribution-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .contribution-card {
        border-radius: 16px;
        padding: 2.5rem;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }
}

.contribution-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .contribution-header {
        margin-bottom: 2rem;
    }
}

.contribution-logo {
    width: 48px;
    height: 48px;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .contribution-logo {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
}

.growtharise-logo-medium {
    width: 48px;
    height: 48px;
    background: #11b981;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .growtharise-logo-medium {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
}

.contribution-header h3 {
    margin-bottom: 0.5rem;
}

.contribution-subtitle {
    color: #666666;
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .contribution-subtitle {
        font-size: 0.875rem;
    }
}

.contribution-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .contribution-content {
        gap: 1.5rem;
    }
}

.contribution-item {
    display: flex;
    gap: 0.75rem;
    align-items: start;
}

@media (min-width: 768px) {
    .contribution-item {
        gap: 1rem;
    }
}

.contribution-item svg {
    color: #11b981;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 0.125rem;
}

@media (min-width: 768px) {
    .contribution-item svg {
        width: 20px;
        height: 20px;
    }
}

.contribution-item h4 {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .contribution-item h4 {
        font-size: 1rem;
    }
}

.contribution-item p {
    color: #666666;
    margin-bottom: 0;
    font-size: 0.8rem;
}

@media (min-width: 768px) {
    .contribution-item p {
        font-size: 0.875rem;
    }
}

/* Joint Vision - Mobile First */
.joint-vision {
    padding: 60px 0;
    background: white;
}

@media (min-width: 768px) {
    .joint-vision {
        padding: 80px 0;
    }
}

@media (min-width: 1024px) {
    .joint-vision {
        padding: 100px 0;
    }
}

.vision-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 1024px) {
    .vision-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        text-align: left;
    }
}

.vision-badge {
    display: inline-block;
    background: #11b981;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.625rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (min-width: 768px) {
    .vision-badge {
        padding: 6px 16px;
        font-size: 0.75rem;
        margin-bottom: 1.5rem;
    }
}

.vision-lead {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .vision-lead {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 1024px) {
    .vision-lead {
        font-size: 1.25rem;
    }
}

.vision-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .vision-points {
        gap: 2rem;
    }
}

.vision-point {
    display: flex;
    gap: 0.75rem;
    align-items: start;
    text-align: left;
}

@media (min-width: 768px) {
    .vision-point {
        gap: 1rem;
    }
}

.vision-icon {
    width: 40px;
    height: 40px;
    background: #11b981;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .vision-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }
}

.vision-icon svg {
    width: 18px;
    height: 18px;
}

@media (min-width: 768px) {
    .vision-icon svg {
        width: 20px;
        height: 20px;
    }
}

.vision-text-content h4 {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .vision-text-content h4 {
        font-size: 1.125rem;
    }
}

.vision-text-content p {
    color: #666666;
    margin-bottom: 0;
    font-size: 0.8rem;
}

@media (min-width: 768px) {
    .vision-text-content p {
        font-size: 0.875rem;
    }
}

/* Tech Ecosystem - Mobile Responsive */
.tech-ecosystem {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 250px;
    width: 250px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .tech-ecosystem {
        height: 300px;
        width: 300px;
    }
}

.tech-center {
    width: 100px;
    height: 100px;
    background: #11b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    text-align: center;
    font-size: 0.75rem;
    position: absolute;
}

@media (min-width: 768px) {
    .tech-center {
        width: 120px;
        height: 120px;
        font-size: 0.875rem;
    }
}

.tech-orbit {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
    .tech-orbit {
        animation: none;
    }
}

.tech-item {
    position: absolute;
    width: 70px;
    height: 32px;
    background: white;
    border: 2px solid #11b981;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    font-weight: 500;
    color: #11b981;
    text-align: center;
}

@media (min-width: 768px) {
    .tech-item {
        width: 80px;
        height: 40px;
        border-radius: 20px;
        font-size: 0.75rem;
    }
}

.tech-item:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.tech-item:nth-child(2) { top: 20%; right: 0; transform: translateY(-50%); }
.tech-item:nth-child(3) { bottom: 20%; right: 0; transform: translateY(50%); }
.tech-item:nth-child(4) { bottom: 0; left: 50%; transform: translateX(-50%); }
.tech-item:nth-child(5) { bottom: 20%; left: 0; transform: translateY(50%); }
.tech-item:nth-child(6) { top: 20%; left: 0; transform: translateY(-50%); }

/* Partnership Benefits - Mobile First */
.partnership-benefits {
    padding: 60px 0;
    background: #fafbff;
}

@media (min-width: 768px) {
    .partnership-benefits {
        padding: 80px 0;
    }
}

@media (min-width: 1024px) {
    .partnership-benefits {
        padding: 100px 0;
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .benefit-card {
        padding: 2.5rem;
    }
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

@media (min-width: 1024px) {
    .benefit-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: #11b981;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
}

@media (min-width: 768px) {
    .benefit-icon {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        margin-bottom: 1.5rem;
    }
}

.benefit-icon svg {
    width: 20px;
    height: 20px;
}

@media (min-width: 768px) {
    .benefit-icon svg {
        width: 24px;
        height: 24px;
    }
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.benefit-card p {
    color: #666666;
    line-height: 1.6;
}

/* Success Stories - Mobile First */
.success-stories {
    padding: 60px 0;
    background: white;
}

@media (min-width: 768px) {
    .success-stories {
        padding: 80px 0;
    }
}

@media (min-width: 1024px) {
    .success-stories {
        padding: 100px 0;
    }
}

.stories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .stories-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
}

@media (min-width: 1024px) {
    .stories-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

.story-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

@media (min-width: 768px) {
    .story-card {
        border-radius: 16px;
        padding: 2.5rem;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }
}

.story-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .story-header {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
}

.story-icon {
    width: 40px;
    height: 40px;
    background: #11b981;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

@media (min-width: 768px) {
    .story-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }
}

.story-icon svg {
    width: 18px;
    height: 18px;
}

@media (min-width: 768px) {
    .story-icon svg {
        width: 20px;
        height: 20px;
    }
}

.story-header h3 {
    color: #1a1a1a;
    margin-bottom: 0;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .story-header h3 {
        font-size: 1.125rem;
    }
}

.story-content p {
    color: #666666;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .story-content p {
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }
}

.story-results {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .story-results {
        gap: 2rem;
        justify-content: flex-start;
    }
}

.result-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.result-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #11b981;
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .result-value {
        font-size: 1.5rem;
    }
}

.result-label {
    font-size: 0.625rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (min-width: 768px) {
    .result-label {
        font-size: 0.75rem;
    }
}

/* About Page Styles - Mobile First */
.our-story {
    padding: 60px 0;
    background: white;
}

@media (min-width: 768px) {
    .our-story {
        padding: 80px 0;
    }
}

@media (min-width: 1024px) {
    .our-story {
        padding: 100px 0;
    }
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .story-content {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 4rem;
    }
}

.story-text h2 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

@media (min-width: 768px) {
    .story-text h2 {
        margin-bottom: 1.5rem;
    }
}

.story-text p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .story-text p {
        margin-bottom: 1.5rem;
        font-size: 1.125rem;
    }
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

@media (min-width: 768px) {
    .timeline {
        gap: 2rem;
    }
}

.timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: #11b981;
    border-radius: 1px;
}

@media (min-width: 768px) {
    .timeline::before {
        left: 15px;
        top: 15px;
        bottom: 15px;
    }
}

.timeline-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

@media (min-width: 768px) {
    .timeline-item {
        gap: 1.5rem;
    }
}

.timeline-marker {
    width: 24px;
    height: 24px;
    background: #11b981;
    border-radius: 50%;
    flex-shrink: 0;
    border: 3px solid rgb(255, 255, 255);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .timeline-marker {
        width: 30px;
        height: 30px;
        border: 4px solid rgb(255, 255, 255);
    }
}

.timeline-content h4 {
    margin-bottom: 0.5rem;
    color: #11b981;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .timeline-content h4 {
        font-size: 1.25rem;
    }
}

.timeline-content p {
    color: #666666;
    margin-bottom: 0;
    font-size: 0.8rem;
}

@media (min-width: 768px) {
    .timeline-content p {
        font-size: 0.875rem;
    }
}

/* Vision Mission Values - Mobile First */
.vision-mission-values {
    padding: 60px 0;
    background: #fafbff;
}

@media (min-width: 768px) {
    .vision-mission-values {
        padding: 80px 0;
    }
}

@media (min-width: 1024px) {
    .vision-mission-values {
        padding: 100px 0;
    }
}

.vmv-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .vmv-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
        margin-top: 3rem;
    }
}

@media (min-width: 1024px) {
    .vmv-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 3rem;
    }
}

.vmv-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}

@media (min-width: 768px) {
    .vmv-card {
        padding: 2.5rem;
        border-radius: 16px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }
}

@media (min-width: 1024px) {
    .vmv-card {
        padding: 3rem;
    }
}

.vmv-icon {
    width: 60px;
    height: 60px;
    background: #11b981;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

@media (min-width: 768px) {
    .vmv-icon {
        width: 80px;
        height: 80px;
        border-radius: 16px;
        margin-bottom: 2rem;
    }
}

.vmv-icon svg {
    width: 24px;
    height: 24px;
}

@media (min-width: 768px) {
    .vmv-icon svg {
        width: 32px;
        height: 32px;
    }
}

.vmv-card h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

@media (min-width: 768px) {
    .vmv-card h3 {
        margin-bottom: 1.5rem;
    }
}

.vmv-card p {
    line-height: 1.6;
    color: #666666;
    text-align: left;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 0.5rem 0;
    color: #666666;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.values-list li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
}

/* Leadership - Mobile First */
.leadership {
    padding: 60px 0;
    background: white;
}

@media (min-width: 768px) {
    .leadership {
        padding: 80px 0;
    }
}

@media (min-width: 1024px) {
    .leadership {
        padding: 100px 0;
    }
}

.leadership-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .leadership-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
        margin-top: 3rem;
    }
}

@media (min-width: 1024px) {
    .leadership-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.leader-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}

@media (min-width: 768px) {
    .leader-card {
        border-radius: 16px;
        padding: 2.5rem;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }
}

.leader-avatar {
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .leader-avatar {
        margin-bottom: 1.5rem;
    }
}

.avatar-placeholder {
    width: 60px;
    height: 60px;
    background: #11b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
}

@media (min-width: 768px) {
    .avatar-placeholder {
        width: 80px;
        height: 80px;
    }
}

.avatar-placeholder svg {
    width: 24px;
    height: 24px;
}

@media (min-width: 768px) {
    .avatar-placeholder svg {
        width: 32px;
        height: 32px;
    }
}

.leader-info h4 {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.leader-title {
    color: #11b981;
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .leader-title {
        font-size: 1rem;
    }
}

.leader-info p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: left;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .leader-info p {
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }
}

.leader-social {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .leader-social {
        gap: 0.75rem;
    }
}

.leader-social a {
    width: 32px;
    height: 32px;
    background: #f8faff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #11b981;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .leader-social a {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }
}

.leader-social a:hover {
    background: #11b981;
    color: white;
}

.leader-social svg {
    width: 14px;
    height: 14px;
}

@media (min-width: 768px) {
    .leader-social svg {
        width: 16px;
        height: 16px;
    }
}

/* Company Stats - Mobile First */
.company-stats {
    padding: 60px 0;
    background: #11b981;
}

@media (min-width: 768px) {
    .company-stats {
        padding: 80px 0;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
    color: rgb(244, 240, 240);
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .stat-number {
        font-size: 3rem;
    }
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .stat-label {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .stat-label {
        font-size: 1.125rem;
    }
}

/* Contact Page Styles - Mobile First */
.contact-section {
    padding: 60px 0;
    background: white;
}

@media (min-width: 768px) {
    .contact-section {
        padding: 80px 0;
    }
}

@media (min-width: 1024px) {
    .contact-section {
        padding: 100px 0;
    }
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .contact-content {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 4rem;
    }
}

.form-header {
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .form-header {
        margin-bottom: 2rem;
    }
}

.form-header h2 {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.form-header p {
    color: #666666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .contact-form {
        gap: 1.5rem;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1a1a1a;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .form-group label {
        font-size: 1rem;
    }
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

@media (min-width: 768px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 1rem;
    }
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #11b981;
    box-shadow: 0 0 0 3px rgba(17, 185, 129, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

@media (min-width: 768px) {
    .form-group textarea {
        min-height: 120px;
    }
}

.error-message {
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.5rem;
    display: none;
}

@media (min-width: 768px) {
    .error-message {
        font-size: 0.875rem;
    }
}

.form-success {
    display: none;
    align-items: center;
    gap: 0.5rem;
    color: #10b981;
    font-weight: 500;
    margin-top: 1rem;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .form-success {
        font-size: 1rem;
    }
}

.form-success svg {
    width: 18px;
    height: 18px;
}

@media (min-width: 768px) {
    .form-success svg {
        width: 20px;
        height: 20px;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .contact-info {
        gap: 2rem;
    }
}

.contact-card {
    background: #fafbff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e8ecf4;
}

@media (min-width: 768px) {
    .contact-card {
        padding: 2rem;
    }
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #11b981;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
}

@media (min-width: 768px) {
    .contact-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }
}

.contact-icon svg {
    width: 18px;
    height: 18px;
}

@media (min-width: 768px) {
    .contact-icon svg {
        width: 20px;
        height: 20px;
    }
}

.contact-card h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-card a {
    color: #11b981;
    font-weight: 500;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-detail {
    font-size: 0.8rem;
    color: #666666;
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .contact-detail {
        font-size: 0.875rem;
    }
}

/* Map Section - Mobile First */
.map-section {
    padding: 60px 0;
    background: #fafbff;
}

@media (min-width: 768px) {
    .map-section {
        padding: 80px 0;
    }
}

.map-header {
    text-align: center;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .map-header {
        margin-bottom: 3rem;
    }
}

.map-header h2 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.map-container {
    max-width: 100%;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .map-container {
        max-width: 800px;
    }
}

.map-placeholder {
    height: 300px;
    background: #e0e7ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .map-placeholder {
        height: 400px;
    }
}

.map-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.map-content svg {
    width: 40px;
    height: 40px;
    color: #11b981;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .map-content svg {
        width: 48px;
        height: 48px;
    }
}

.map-content h3 {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-size: 1.125rem;
}

@media (min-width: 768px) {
    .map-content h3 {
        font-size: 1.25rem;
    }
}

.map-content p {
    color: #666666;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .map-content p {
        font-size: 1rem;
    }
}

.map-overlay {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.625rem;
    color: #666666;
}

@media (min-width: 768px) {
    .map-overlay {
        font-size: 0.75rem;
    }
}

/* Contact FAQ - Mobile First */
.contact-faq {
    padding: 60px 0;
    background: white;
}

@media (min-width: 768px) {
    .contact-faq {
        padding: 80px 0;
    }
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
}

@media (min-width: 1024px) {
    .faq-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.faq-item {
    background: #fafbff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e8ecf4;
}

@media (min-width: 768px) {
    .faq-item {
        padding: 2rem;
    }
}

.faq-item h4 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.faq-item p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Partnership Mention - Mobile First */
.partnership-mention {
    padding: 40px 0;
    background: #fafbff;
    border-top: 1px solid #e8ecf4;
}

@media (min-width: 768px) {
    .partnership-mention {
        padding: 60px 0;
    }
}

.mention-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .mention-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        gap: 2rem;
    }
}

.mention-text {
    flex: 1;
}

.mention-text h3 {
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

@media (min-width: 768px) {
    .mention-text h3 {
        margin-bottom: 1rem;
    }
}

.mention-text p {
    color: #666666;
    line-height: 1.6;
}

.mention-logos {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .mention-logos {
        gap: 1rem;
    }
}

.partner-logo-small {
    width: 40px;
    height: 40px;
}

@media (min-width: 768px) {
    .partner-logo-small {
        width: 48px;
        height: 48px;
    }
}

.partner-logo-small img {
    width: 100%;
    height: 100%;
}

.growtharise-logo-small {
    width: 40px;
    height: 40px;
    background: #11b981;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .growtharise-logo-small {
        width: 48px;
        height: 48px;
        border-radius: 8px;
        font-size: 1rem;
    }
}

/* Enterprise Features - Mobile First */
.enterprise-features {
    padding: 60px 0;
    background: #11b981;
    color: white;
}

@media (min-width: 768px) {
    .enterprise-features {
        padding: 80px 0;
    }
}

@media (min-width: 1024px) {
    .enterprise-features {
        padding: 100px 0;
    }
}

.enterprise-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .enterprise-stats {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 3rem;
        margin-top: 3rem;
    }
}

.enterprise-stats .stat-item {
    text-align: center;
    color: white;
}

.enterprise-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
    color: white;
}

@media (min-width: 768px) {
    .enterprise-stats .stat-number {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .enterprise-stats .stat-number {
        font-size: 3.5rem;
    }
}

.enterprise-stats .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    color: white;
}

@media (min-width: 768px) {
    .enterprise-stats .stat-label {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .enterprise-stats .stat-label {
        font-size: 1.125rem;
    }
}

/* Technology Stack - Mobile First */
.technology-stack {
    padding: 60px 0;
    background: white;
}

@media (min-width: 768px) {
    .technology-stack {
        padding: 80px 0;
    }
}

@media (min-width: 1024px) {
    .technology-stack {
        padding: 100px 0;
    }
}

.tech-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 1024px) {
    .tech-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        text-align: left;
    }
}

.tech-lead {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .tech-lead {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 1024px) {
    .tech-lead {
        font-size: 1.25rem;
    }
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .tech-features {
        gap: 2rem;
    }
}

.tech-feature {
    display: flex;
    gap: 0.75rem;
    align-items: start;
    text-align: left;
}

@media (min-width: 768px) {
    .tech-feature {
        gap: 1rem;
    }
}

.tech-feature svg {
    color: #11b981;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 0.25rem;
}

@media (min-width: 768px) {
    .tech-feature svg {
        width: 24px;
        height: 24px;
    }
}

.tech-feature h4 {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .tech-feature h4 {
        font-size: 1.125rem;
    }
}

.tech-feature p {
    color: #666666;
    margin-bottom: 0;
    font-size: 0.8rem;
}

@media (min-width: 768px) {
    .tech-feature p {
        font-size: 0.875rem;
    }
}

.tech-architecture {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 300px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .tech-architecture {
        gap: 1rem;
        max-width: 400px;
    }
}

.tech-layer {
    background: linear-gradient(135deg, #f8faff 0%, #e8f4f8 100%);
    border: 2px solid #11b981;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: #1a1a1a;
    position: relative;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .tech-layer {
        border-radius: 12px;
        padding: 1.5rem;
        font-size: 1rem;
    }
}

.tech-layer:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(17, 185, 129, 0.2);
}

@media (min-width: 1024px) {
    .tech-layer:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 25px rgba(17, 185, 129, 0.2);
    }
}

.tech-layer:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 0.75rem;
    background: #11b981;
}

@media (min-width: 768px) {
    .tech-layer:not(:last-child)::after {
        bottom: -1.5rem;
        height: 1rem;
    }
}

/* CTA Section - Mobile First */
.cta-section {
    padding: 60px 0;
    background: #11b981;
    color: white;
    text-align: center;
}

@media (min-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }
}

@media (min-width: 1024px) {
    .cta-section {
        padding: 100px 0;
    }
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

@media (min-width: 768px) {
    .cta-content h2 {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .cta-content h2 {
        font-size: 2.5rem;
    }
}

.cta-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .cta-content p {
        font-size: 1.125rem;
        margin-bottom: 2rem;
        max-width: 600px;
    }
}

@media (min-width: 1024px) {
    .cta-content p {
        font-size: 1.25rem;
    }
}

.cta-section .btn-primary {
    background: white;
    color: #11b981;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    max-width: 280px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .cta-section .btn-primary {
        max-width: none;
        margin: 0;
    }
}

.cta-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Utility Classes for Mobile */
.mobile-hidden {
    display: none;
}

@media (min-width: 768px) {
    .mobile-hidden {
        display: block;
    }
}

.desktop-hidden {
    display: block;
}

@media (min-width: 768px) {
    .desktop-hidden {
        display: none;
    }
}

/* Touch-friendly interactions */
@media (hover: none) and (pointer: coarse) {
    .btn:hover,
    .service-card:hover,
    .benefit-card:hover,
    .tech-layer:hover {
        transform: none;
    }
    
    .btn:active,
    .service-card:active,
    .benefit-card:active {
        transform: scale(0.98);
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000000;
        border: 2px solid #ffffff;
    }
    
    .btn-secondary {
        border-color: #000000;
        color: #000000;
    }
    
    .service-card,
    .benefit-card {
        border: 2px solid #000000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    ::before,
    ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .tech-orbit {
        animation: none;
    }
}

/* Focus Styles for Accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #11b981;
    outline-offset: 2px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #11b981;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
}

.skip-link:focus {
    top: 6px;
}

/* Mobile Menu Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 768px) {
    .nav-overlay {
        display: none;
    }
}

/* Prevent scroll when mobile menu is open */
body.nav-open {
    overflow: hidden;
}

@media (min-width: 768px) {
    body.nav-open {
        overflow: auto;
    }
}

/* Safe area for devices with notches */
@supports (padding: max(0px)) {
    .header {
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
    }
    
    .container {
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
    }
}

/* Improved touch targets for mobile */
@media (max-width: 767px) {
    .nav-link,
    .btn,
    .tab {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Horizontal scroll for dashboard tabs on mobile */
.dashboard-tabs::-webkit-scrollbar {
    display: none;
}

.dashboard-tabs {
    -ms-overflow-style: none;
    scrollbar-width: none;
}