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

:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --bg-page-start: #ffffff;
    --bg-page-end: #f8f9ff;
    --hero-bg-start: #eef2ff;
    --hero-bg-end: #faf5ff;
    --nav-bg: rgba(255, 255, 255, 0.94);
    --card-bg: rgba(255, 255, 255, 0.96);
    --card-border: rgba(99, 102, 241, 0.12);
    --card-shadow: rgba(99, 102, 241, 0.12);
    --input-bg: #fbfcff;
    --input-border: rgba(99, 102, 241, 0.18);
    --icon-bg-1: rgba(99, 102, 241, 0.12);
    --icon-bg-2: rgba(236, 72, 153, 0.12);
    --icon-color: #4f46e5;
    --heading-gradient: linear-gradient(135deg, #4338ca, #7c3aed 55%, #db2777);
}

html {
    scroll-behavior: smooth;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.industries-grid .reveal-on-scroll:nth-child(2),
.features-grid .reveal-on-scroll:nth-child(2),
.benefits-grid .reveal-on-scroll:nth-child(2),
.process-timeline .reveal-on-scroll:nth-child(2) {
    transition-delay: 0.08s;
}

.industries-grid .reveal-on-scroll:nth-child(3),
.features-grid .reveal-on-scroll:nth-child(3),
.benefits-grid .reveal-on-scroll:nth-child(3),
.process-timeline .reveal-on-scroll:nth-child(3) {
    transition-delay: 0.16s;
}

.industries-grid .reveal-on-scroll:nth-child(4),
.features-grid .reveal-on-scroll:nth-child(4),
.benefits-grid .reveal-on-scroll:nth-child(4),
.process-timeline .reveal-on-scroll:nth-child(4) {
    transition-delay: 0.24s;
}

.features-grid .reveal-on-scroll:nth-child(5) {
    transition-delay: 0.32s;
}

.features-grid .reveal-on-scroll:nth-child(6) {
    transition-delay: 0.4s;
}

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll {
        transition: none;
    }
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.navbar {
    background: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 40px;
    max-width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 2.75rem;
    height: 2.75rem;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
    content: '';
    background-color: var(--text-dark);
    height: 3px;
    width: 1.8rem;
    border-radius: 2px;
    display: block;
    transition: all 0.3s ease;
}

.nav-toggle-icon::before {
    content: '';
    position: absolute;
    margin-top: -0.6rem;
}

.nav-toggle-icon::after {
    content: '';
    position: absolute;
    margin-top: 0.6rem;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
    background-color: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
    transform: rotate(45deg) translate(0.4rem, 0.4rem);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
    transform: rotate(-45deg) translate(0.5rem, -0.5rem);
}

.btn-primary,
.btn-secondary,
.btn-large {
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.7rem 1.5rem;
}

.btn-primary:hover,
.btn-primary:active {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
    outline: none;
}

.btn-primary:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.7rem 1.5rem;
}

.btn-secondary:hover,
.btn-secondary:active {
    background: rgba(99, 102, 241, 0.1);
    outline: none;
}

.btn-secondary:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.hero {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    padding: 4rem 0;
    min-height: auto;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 3rem 40px;
}

.hero-content h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    word-break: break-word;
}

.hero-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-buttons .btn-large {
    min-width: 150px;
    padding: 1.2rem 2.5rem;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.stat h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-light);
    font-size: 1rem;
}

.features {
    padding: 3.5rem 0;
    background: var(--bg-light);
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.upcoming {
    padding: 3.5rem 0;
    background: var(--bg-white);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    display: none;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin: 2rem 0;
}

.timeline-item:nth-child(odd) .timeline-content {
    grid-column: 1;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 2;
}

.timeline-marker {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    font-size: 1.1rem;
}

.timeline-content {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.timeline-content ul {
    list-style: none;
}

.timeline-content li {
    padding: 0.7rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.timeline-content li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.benefits {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.benefit-item {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.15);
}

.benefit-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 3.5rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.cta-section p {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-section .btn-primary {
    background: var(--bg-white);
    color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-section .btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.footer {
    background: var(--text-dark);
    color: #d1d5db;
    padding: 2.5rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

.who-we-help {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.08));
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
}

.industry-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 3px solid var(--primary-color);
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.2);
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.industry-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.industry-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

.solutions {
    padding: 3.5rem 0;
    background: var(--bg-light);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.solution-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.2);
}

.solution-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.solution-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.solution-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.implementation-process {
    padding: 3.5rem 0;
    background: var(--bg-white);
}

.process-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0;
}

.process-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    align-items: flex-start;
}

.process-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.process-content {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.process-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.process-content p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-section {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.08));
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.contact-form button {
    width: 100%;
}

.contact-info {
    padding: 2rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
    word-break: break-word;
}

.info-item a:hover {
    text-decoration: underline;
}

.info-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    border-left: 4px solid var(--primary-color);
}

.info-box h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.info-box ul {
    list-style: none;
}

.info-box li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.info-box li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

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

    .navbar {
        padding: 0;
    }

    .navbar .container {
        padding: 1rem 20px;
        gap: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        gap: 0;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        border-top: 1px solid var(--border-color);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 0.75rem 20px;
        display: block;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links a.btn-primary {
        margin: 0.5rem 20px;
        border-bottom: none;
        padding: 0.7rem 1.5rem;
        width: auto;
    }

    .logo {
        gap: 0.5rem;
        flex: 1;
    }

    .logo-img {
        height: 40px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero .container {
        grid-template-columns: 1fr;
        padding: 2rem 20px;
        gap: 1.5rem;
    }

    .hero-content h2 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-buttons .btn-large {
        width: 100%;
        min-width: unset;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat {
        padding: 1.2rem;
    }

    .stat h3 {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }

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

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

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

    .feature-card {
        padding: 1.5rem;
    }

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

    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }

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

    .benefit-item {
        padding: 1.5rem;
    }

    .benefit-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .benefit-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .benefit-item p {
        font-size: 0.9rem;
    }

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

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        margin: 1.5rem 0;
    }

    .timeline-item .timeline-marker,
    .timeline-item .timeline-content {
        grid-column: 1;
    }

    .timeline-marker {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }

    .timeline-content {
        padding: 1.5rem;
        border-left: 3px solid var(--primary-color);
    }

    .timeline-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .timeline-content li {
        font-size: 0.9rem;
        padding: 0.5rem 0 0.5rem 1.5rem;
    }

    .timeline::before {
        display: none;
    }

    .cta-section {
        padding: 2rem 0;
    }

    .cta-section h2 {
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
    }

    .cta-section p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .cta-buttons .btn-large {
        width: 100%;
        min-width: unset;
    }

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

    .industry-card h3 {
        font-size: 1rem;
    }

    .industry-icon {
        font-size: 2.5rem;
    }

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

    .solution-icon {
        font-size: 2.5rem;
    }

    .process-item {
        grid-template-columns: 60px 1fr;
        gap: 1.5rem;
    }

    .process-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-info {
        padding: 1.5rem;
    }

    .contact-info h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .info-box {
        padding: 1rem;
        margin-top: 1.5rem;
    }

    .info-box h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .info-box li {
        font-size: 0.9rem;
    }
}

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

    .navbar .container {
        padding: 0.8rem 15px;
    }

    .nav-links {
        padding: 0.8rem 0;
    }

    .nav-links a {
        padding: 0.6rem 15px;
        font-size: 0.9rem;
    }

    .logo-img {
        height: 35px;
    }

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

    .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        min-height: 40px;
    }

    .btn-secondary {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        min-height: 40px;
    }

    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        min-height: 44px;
    }

    .hero {
        padding: 1.5rem 0;
    }

    .hero .container {
        padding: 1.5rem 15px;
        gap: 1rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 0.6rem;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.6rem;
    }

    .hero-stats {
        gap: 0.8rem;
    }

    .stat {
        padding: 1rem;
        border-left: 3px solid var(--primary-color);
    }

    .stat h3 {
        font-size: 1.5rem;
        margin-bottom: 0.2rem;
    }

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

    .section-title {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

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

    .feature-card {
        padding: 1.2rem;
    }

    .feature-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

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

    .feature-icon {
        font-size: 2.2rem;
        margin-bottom: 0.6rem;
    }

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

    .benefit-item {
        padding: 1.2rem;
    }

    .benefit-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
    }

    .benefit-item h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .benefit-item p {
        font-size: 0.85rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .footer-section h4 {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }

    .footer-section p,
    .footer-section li {
        font-size: 0.85rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }

    .timeline-item {
        margin: 1rem 0;
    }

    .timeline-marker {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }

    .timeline-content {
        padding: 1.2rem;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .timeline-content li {
        font-size: 0.85rem;
        padding: 0.4rem 0 0.4rem 1.2rem;
    }

    .cta-section {
        padding: 1.5rem 0;
    }

    .cta-section h2 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .cta-section p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.6rem;
    }

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

    .industry-card {
        padding: 1.2rem;
    }

    .industry-icon {
        font-size: 2.2rem;
    }

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

    .solution-card {
        padding: 1.2rem;
    }

    .solution-icon {
        font-size: 2.2rem;
    }

    .process-item {
        grid-template-columns: 50px 1fr;
        gap: 1rem;
    }

    .process-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .process-content {
        padding: 1.2rem;
    }

    .process-content h3 {
        font-size: 1.1rem;
    }

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

    .contact-form {
        padding: 1.2rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }

    .contact-info {
        padding: 1.2rem;
    }

    .contact-info h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .info-box {
        padding: 0.8rem;
        margin-top: 1rem;
    }

    .info-box h4 {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 40px;
    text-align: center;
    margin-top: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

:root {
    --surface: #ffffff;
    --surface-soft: #f5f7ff;
    --shadow-soft: 0 18px 45px rgba(31, 41, 55, 0.08);
    --shadow-card: 0 10px 28px rgba(99, 102, 241, 0.12);
    --radius-lg: 22px;
    --radius-md: 16px;
}

body {
    background:
    radial-gradient(circle at top left, rgba(99, 102, 241, 0.08), transparent 32rem),
    linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
}

.navbar {
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(99, 102, 241, 0.10);
    box-shadow: 0 8px 30px rgba(31, 41, 55, 0.08);
}

.logo-img {
    height: 42px;
}

.nav-links {
    gap: 1.35rem;
}

.nav-links a {
    border-radius: 999px;
    padding: 0.45rem 0.75rem;
}

.nav-links a:hover {
    background: rgba(99, 102, 241, 0.08);
}

.nav-links a.btn-primary {
    color: #ffffff;
    padding: 0.7rem 1.25rem;
}

.btn-primary,
.btn-secondary,
.btn-large {
    border-radius: 999px;
    text-decoration: none;
}

.btn-primary {
    box-shadow: 0 12px 28px rgba(99, 102, 241, 0.28);
}

.btn-secondary {
    background: #ffffff;
}

.hero,
.page-header {
    position: relative;
    overflow: hidden;
}

.hero {
    background:
    radial-gradient(circle at 82% 20%, rgba(236, 72, 153, 0.18), transparent 22rem),
    linear-gradient(135deg, #eef2ff 0%, #faf5ff 100%);
    padding: 4.5rem 0;
}

.hero .container {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.hero-content h1,
.hero-content h2 {
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    line-height: 1.05;
    margin-bottom: 1.2rem;
    letter-spacing: -0.05em;
    background: var(--heading-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.15rem;
    max-width: 640px;
}

.stat,
.feature-card,
.industry-card,
.mission-card,
.vision-card,
.values-card,
.why-item,
.difference-card,
.industry,
.case-section,
.industry-section,
.industry-challenges,
.industry-solutions,
.industry-result,
.deployment-card,
.service-main-card,
.service-detail,
.package,
.pricing-card,
.contact-form,
.process-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.stat {
    border-left: 0;
    padding: 1.35rem;
}

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

section:not(.hero):not(.page-header):not(.navbar) {
    scroll-margin-top: 92px;
}

.page-header {
    padding: 4rem 0;
    background:
    radial-gradient(circle at 30% 15%, rgba(255, 255, 255, 0.22), transparent 18rem),
    linear-gradient(135deg, #4f46e5, #8b5cf6);
}

.page-header h1 {
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    letter-spacing: -0.04em;
}

.section-title {
    color: #4f46e5;
    font-size: clamp(1.8rem, 3vw, 2.45rem);
    letter-spacing: -0.035em;
    margin-bottom: 0.8rem;
}

.section-subtitle {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.story-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 2rem;
    background: #ffffff;
    border: 1px solid rgba(99, 102, 241, 0.12);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.story-content h2,
.contact-form h2 {
    color: #4f46e5;
    font-size: 1.9rem;
    letter-spacing: -0.03em;
}

.mission-vision-grid,
.why-grid,
.differences-grid,
.industries-list,
.features-grid,
.industries-grid,
.services-grid-main,
.deployment-grid,
.packages-grid,
.pricing-grid,
.expertise-grid,
.reasons-grid {
    gap: 1.4rem;
}

.feature-card,
.industry-card,
.mission-card,
.vision-card,
.values-card,
.why-item,
.difference-card,
.industry,
.service-main-card,
.deployment-card,
.package,
.pricing-card,
.expertise-card,
.reason {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.industry-header .industry-icon-large {
    margin-bottom: 0;
}

.result-item {
    border-radius: var(--radius-md);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.contact-wrapper {
    grid-template-columns: 1fr;
    max-width: 820px;
    margin: 0 auto;
}

.footer {
    background: #111827;
}

@media (max-width: 900px) {
    .hero .container,
    .features-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 3rem 0;
    }
}

body {
    background:
    radial-gradient(circle at top left, rgba(99, 102, 241, 0.08), transparent 32rem),
    linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
}

.navbar {
    background: var(--nav-bg);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(99, 102, 241, 0.12);
    box-shadow: 0 8px 30px rgba(31, 41, 55, 0.08);
}

.logo-img {
    height: 42px;
}

.nav-links {
    gap: 1.25rem;
}

.nav-links a {
    border-radius: 999px;
    padding: 0.45rem 0.75rem;
}

.nav-links a:hover {
    background: rgba(99, 102, 241, 0.08);
}

.btn-primary,
.btn-secondary,
.btn-large {
    border-radius: 999px;
    text-decoration: none;
}

.hero {
    background:
    radial-gradient(circle at 82% 20%, rgba(236, 72, 153, 0.16), transparent 22rem),
    linear-gradient(135deg, #eef2ff 0%, #faf5ff 100%);
    padding: 4.5rem 0;
}

.hero .container {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.hero-content h1,
.hero-content h2 {
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    line-height: 1.05;
    margin-bottom: 1.2rem;
    letter-spacing: -0.05em;
    background: var(--heading-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.15rem;
}

.page-header {
    padding: 4rem 0;
    background:
    radial-gradient(circle at 30% 15%, rgba(255, 255, 255, 0.22), transparent 18rem),
    linear-gradient(135deg, #4f46e5, #8b5cf6);
}

.page-header h1 {
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    letter-spacing: -0.04em;
}

.section-title {
    color: #4f46e5;
    font-size: clamp(1.8rem, 3vw, 2.45rem);
    letter-spacing: -0.035em;
    margin-bottom: 0.8rem;
}

.section-subtitle {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.our-story,
.mission-vision,
.why-we-built,
.what-makes-different,
.industries-served,
.features,
.services-overview,
.detailed-services,
.deployment-options,
.service-packages,
.expertise-matters,
.pricing-philosophy,
.implementation-process,
.contact-page-section {
    padding: 4rem 0;
}

.story-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 2rem;
}

.stat {
    border-left: 0;
}

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

.mission-vision-grid,
.why-grid,
.differences-grid,
.industries-list,
.features-grid,
.industries-grid,
.services-grid-main,
.deployment-grid,
.packages-grid,
.pricing-grid,
.expertise-grid,
.reasons-grid {
    gap: 1.4rem;
}

.feature-card:hover,
.industry-card:hover,
.mission-card:hover,
.vision-card:hover,
.values-card:hover,
.why-item:hover,
.difference-card:hover,
.industry:hover,
.service-main-card:hover,
.deployment-card:hover,
.package:hover,
.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.28);
    box-shadow: 0 22px 50px rgba(99, 102, 241, 0.16);
}

.case-study,
.industry-detail {
    padding-left: 0;
    padding-right: 0;
}

.contact-wrapper {
    grid-template-columns: 1fr;
    max-width: 820px;
    margin: 0 auto;
}

.form-group input,
.form-group select,
.form-group textarea {
    border-radius: 14px;
    border: 1px solid var(--input-border);
    background: var(--input-bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
}

.footer {
    background: #111827;
}

@media (max-width: 900px) {
    .hero .container,
    .features-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }
}

.section-subtitle {
    max-width: 100%;
}

.mission-vision-grid,
.why-grid,
.differences-grid,
.industries-list,
.features-grid,
.industries-grid,
.services-grid-main,
.deployment-grid,
.packages-grid,
.pricing-grid,
.expertise-grid,
.reasons-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.hero .container {
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
}

@media (max-width: 900px) {
    .container,
    .navbar .container,
    .contact-page-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero .container,
    .case-study-content,
    .industry-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body.menu-open {
        overflow: hidden;
    }

    .navbar {
        position: sticky;
        top: 0;
    }

    .navbar .container {
        min-height: 68px;
        padding: 0.75rem 18px;
    }

    .logo-img {
        height: 36px;
    }

    .logo-text {
        font-size: 1.05rem;
    }

    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        background: rgba(99, 102, 241, 0.08);
    }

    .nav-links {
        position: fixed;
        top: 68px;
        left: 12px;
        right: 12px;
        display: none;
        flex-direction: column;
        gap: 0.35rem;
        padding: 0.9rem;
        background: var(--card-bg);
        border: 1px solid var(--card-border);
        border-radius: 18px;
        box-shadow: 0 24px 60px rgba(31, 41, 55, 0.18);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        padding: 0.85rem 1rem;
        border: 0;
        border-radius: 12px;
        text-align: left;
    }

    .nav-links a.btn-primary {
        margin: 0.4rem 0 0;
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .container,
    .navbar .container,
    .contact-page-section .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero {
        padding: 2.4rem 0;
    }

    .hero .container {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        grid-template-columns: 1fr;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .hero-content p {
        font-size: 1rem;
    }

    .page-header {
        margin-top: 0;
        padding: 3rem 18px;
    }

    .our-story,
    .mission-vision,
    .why-we-built,
    .what-makes-different,
    .industries-served,
    .features,
    .services-overview,
    .detailed-services,
    .deployment-options,
    .service-packages,
    .expertise-matters,
    .pricing-philosophy,
    .implementation-process,
    .contact-page-section,
    .case-study,
    .industry-detail {
        padding: 2.4rem 0;
    }

    .features-grid,
    .industries-grid,
    .benefits-grid,
    .mission-vision-grid,
    .why-grid,
    .differences-grid,
    .industries-list,
    .services-grid-main,
    .deployment-grid,
    .packages-grid,
    .pricing-grid,
    .expertise-grid,
    .reasons-grid,
    .case-study-content,
    .industry-content,
    .footer-content,
    .form-row {
        grid-template-columns: 1fr;
    }

    .story-content,
    .stat,
    .feature-card,
    .industry-card,
    .mission-card,
    .vision-card,
    .values-card,
    .why-item,
    .difference-card,
    .industry,
    .case-section,
    .industry-section,
    .industry-challenges,
    .industry-solutions,
    .industry-result,
    .deployment-card,
    .service-main-card,
    .service-detail,
    .package,
    .pricing-card,
    .contact-form,
    .process-item {
        padding: 1.25rem;
        border-radius: 18px;
    }

    .process-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .process-number {
        width: 52px;
        height: 52px;
        font-size: 1.25rem;
    }

    .cta-buttons,
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-large,
    .cta-buttons a,
    .hero-buttons a {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .container,
    .navbar .container,
    .contact-page-section .container {
        padding-left: 14px;
        padding-right: 14px;
    }

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

    .page-header h1 {
        font-size: 1.9rem;
    }

    .story-content,
    .stat,
    .feature-card,
    .industry-card,
    .mission-card,
    .vision-card,
    .values-card,
    .why-item,
    .difference-card,
    .industry,
    .case-section,
    .industry-section,
    .industry-challenges,
    .industry-solutions,
    .industry-result,
    .deployment-card,
    .service-main-card,
    .service-detail,
    .package,
    .pricing-card,
    .contact-form,
    .process-item {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .container,
    .navbar .container,
    .contact-page-section .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-large {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .container,
    .navbar .container,
    .contact-page-section .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .nav-links a {
        border-radius: 12px;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-large {
        width: 100%;
    }
}

.our-story,
.mission-vision,
.why-we-built,
.what-makes-different,
.industries-served {
    padding: 4rem 0;
}

.our-story,
.what-makes-different {
    background:
    radial-gradient(circle at top left, rgba(99, 102, 241, 0.1), transparent 32%),
    var(--bg-white);
}

.mission-vision,
.industries-served {
    background: var(--bg-light);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(31, 41, 55, 0.08);
}

.story-content h2,
.section-title {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-top: 0.8rem;
}

.mission-vision-grid,
.why-grid,
.differences-grid,
.industries-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.mission-card,
.vision-card,
.values-card,
.why-item,
.difference-card,
.industry {
    background: var(--bg-white);
    padding: 1.6rem;
    border: 1px solid rgba(99, 102, 241, 0.12);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(31, 41, 55, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mission-card:hover,
.vision-card:hover,
.values-card:hover,
.why-item:hover,
.difference-card:hover,
.industry:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(99, 102, 241, 0.16);
}

.card-icon,
.why-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.14), rgba(139, 92, 246, 0.14));
    font-size: 1.5rem;
}

.mission-card h3,
.vision-card h3,
.values-card h3,
.why-item h3,
.difference-card h3,
.industry h3 {
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.mission-card p,
.vision-card p,
.why-item p,
.difference-card p,
.industry p,
.values-card li {
    color: var(--text-light);
    line-height: 1.7;
}

.values-card ul {
    list-style: none;
}

.values-card li {
    padding: 0.45rem 0;
}

.case-study {
    padding: 3rem 40px;
    border-bottom: 1px solid var(--border-color);
}

.case-study.alternate {
    background-color: var(--bg-light);
}

.case-study-header {
    margin-bottom: 2rem;
}

.client-info h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.case-study-subtitle {
    color: var(--text-light);
    font-size: 1rem;
}

.case-study-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.case-section {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.case-section h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.case-section ul {
    list-style: none;
    padding: 0;
}

.case-section li {
    padding: 0.4rem 0;
    color: var(--text-light);
    line-height: 1.7;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.result-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.result-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.result-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.testimonial {
    font-style: italic;
    color: var(--text-dark);
    border-left-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.05), rgba(99, 102, 241, 0.05));
}

.testimonial-author {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.why-chose-aarveta {
    background-color: var(--bg-light);
    padding: 3rem 40px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.reason {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.reason h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.reason p {
    color: var(--text-light);
}

.industry-detail {
    padding: 3rem 40px;
    border-bottom: 1px solid var(--border-color);
}

.industry-detail:nth-child(even) {
    background-color: var(--bg-light);
}

.industry-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.industry-icon-large {
    font-size: 3rem;
}

.industry-header h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.industry-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.industry-section,
.industry-challenges,
.industry-solutions,
.industry-result {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.industry-challenges {
    border-left-color: var(--accent-color);
}

.industry-solutions {
    border-left-color: var(--success-color);
}

.industry-result {
    border-left-color: var(--secondary-color);
    grid-column: 1 / -1;
}

.industry-section h3,
.industry-challenges h3,
.industry-solutions h3,
.industry-result h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.industry-section ul,
.industry-challenges ul,
.industry-solutions ul {
    list-style: none;
    padding: 0;
}

.industry-section li,
.industry-challenges li,
.industry-solutions li {
    padding: 0.4rem 0;
    color: var(--text-light);
    line-height: 1.7;
}

.expertise-matters {
    background-color: var(--bg-light);
    padding: 3rem 40px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.expertise-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.expertise-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.expertise-card p {
    color: var(--text-light);
}

.contact-page-section {
    padding: 2rem 40px 3rem;
}

.contact-page-section .container {
    max-width: 100%;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.contact-form {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-form > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.info-box h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.info-item {
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.info-item strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.2rem;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--secondary-color);
}

.info-box.testimonial {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    border-left-color: var(--secondary-color);
}

.contact-faq {
    background-color: var(--bg-light);
    padding: 3rem 40px;
}

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

.faq-item {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

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

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

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

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

.section-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .our-story,
    .mission-vision,
    .why-we-built,
    .what-makes-different,
    .industries-served {
        padding: 2.5rem 0;
    }

    .story-content,
    .mission-card,
    .vision-card,
    .values-card,
    .why-item,
    .difference-card,
    .industry {
        padding: 1.25rem;
        border-radius: 14px;
    }

    .mission-vision-grid,
    .why-grid,
    .differences-grid,
    .industries-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .case-study-content {
        grid-template-columns: 1fr;
    }

    .industry-content {
        grid-template-columns: 1fr;
    }

    .industry-detail:nth-child(even) .industry-content {
        grid-template-columns: 1fr;
    }

    .industry-result {
        grid-column: 1;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }

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

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

    .btn-large {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 2rem 20px;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .page-header p {
        font-size: 0.9rem;
    }

    .case-study {
        padding: 1.5rem 20px;
    }

    .case-section {
        padding: 1rem;
    }

    .case-section h3 {
        font-size: 1.1rem;
    }

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

    .industry-detail {
        padding: 1.5rem 20px;
    }

    .industry-header {
        flex-direction: column;
        text-align: center;
    }

    .industry-icon-large {
        font-size: 2.5rem;
    }

    .industry-header h2 {
        font-size: 1.4rem;
    }

    .industry-content {
        gap: 1rem;
    }

    .contact-page-section {
        padding: 1.5rem 20px 2rem;
    }

    .contact-wrapper {
        gap: 1.5rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .contact-form h2 {
        font-size: 1.3rem;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.6rem;
        font-size: 1rem;
    }

    .info-box {
        padding: 1rem;
    }

    .info-box h3 {
        font-size: 1rem;
    }

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

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

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

    .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .section-subtitle {
        font-size: 0.95rem;
    }
}

.process-overview {
    padding: 3rem 40px;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step-content > p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.step-content ul {
    list-style: none;
    padding: 0;
}

.step-content li {
    padding: 0.4rem 0;
    color: var(--text-light);
    line-height: 1.6;
}

.step-outcome {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-weight: 600;
    color: var(--primary-color);
}

.timeline-section {
    background-color: var(--bg-white);
    padding: 3rem 40px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.timeline-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.timeline-item {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.timeline-marker {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.timeline-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.timeline-info {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    margin-top: 2rem;
}

.timeline-info p {
    color: var(--text-light);
}

.key-principles {
    background-color: var(--bg-light);
    padding: 3rem 40px;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.principle-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.principle-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.principle-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.principle-card p {
    color: var(--text-light);
}

.engagement-models {
    padding: 3rem 40px;
}

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

.model-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.model-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
}

.model-card.featured {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.model-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.model-description {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.model-features {
    list-style: none;
    padding: 0;
}

.model-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.pricing-philosophy {
    padding: 3rem 40px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.philosophy-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-top: 3px solid var(--primary-color);
}

.philosophy-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.philosophy-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.philosophy-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.pricing-tiers {
    background-color: var(--bg-light);
    padding: 3rem 40px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-header .pricing-subtitle {
    font-size: 0.9rem;
    opacity: 0.95;
}

.pricing-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.price-range {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.timeframe {
    font-size: 0.9rem;
    color: var(--text-light);
}

.pricing-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-example {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.pricing-example h4 {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.pricing-example p {
    color: var(--text-light);
    font-size: 0.85rem;
}

.whats-included {
    padding: 3rem 40px;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.included-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--success-color);
}

.included-item h3 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.included-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.support-maintenance {
    background-color: var(--bg-light);
    padding: 3rem 40px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.support-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.support-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
}

.support-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    transform: scale(1.05);
}

.support-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.support-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.support-features {
    list-style: none;
    padding: 0;
}

.support-features li {
    padding: 0.4rem 0;
    color: var(--text-light);
}

.pricing-factors {
    padding: 3rem 40px;
}

.factors-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.factor {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.factor-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.factor h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.factor p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.pricing-principles {
    background-color: var(--bg-light);
    padding: 3rem 40px;
}

.promises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.promise {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border-top: 3px solid var(--primary-color);
}

.promise h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.promise p {
    color: var(--text-light);
}

.pricing-faq {
    padding: 3rem 40px;
}

@media (max-width: 768px) {
    .process-step {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .timeline-visual {
        gap: 0.5rem;
    }

    .timeline-arrow {
        font-size: 1rem;
    }

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

    .support-card.featured {
        transform: scale(1);
    }

    .model-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .process-step {
        padding: 1.5rem 1rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }

    .timeline-visual {
        flex-direction: column;
        gap: 0.5rem;
    }

    .timeline-item {
        width: 100%;
    }

    .timeline-arrow {
        transform: rotate(90deg);
    }

    .pricing-grid,
    .support-grid,
    .principles-grid,
    .philosophy-grid,
    .factors-list,
    .promises-grid {
        grid-template-columns: 1fr;
    }

    .price-range {
        flex-direction: column;
        gap: 0.5rem;
    }
}

body {
    background: linear-gradient(180deg, var(--bg-page-start) 0%, var(--bg-page-end) 100%);
}

.navbar {
    background: var(--nav-bg);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(99, 102, 241, 0.12);
    box-shadow: 0 8px 30px rgba(31, 41, 55, 0.08);
}

.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--hero-bg-start) 0%, var(--hero-bg-end) 100%);
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero::before {
    top: -12%;
    right: -8%;
    width: 34rem;
    height: 34rem;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.18), transparent 70%);
    animation: heroDrift 20s ease-in-out infinite;
}

.hero::after {
    bottom: -18%;
    left: -10%;
    width: 28rem;
    height: 28rem;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.14), transparent 70%);
    animation: heroDrift 20s ease-in-out infinite reverse;
}

.hero .container {
    position: relative;
    z-index: 1;
}

@keyframes heroDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-4%, 4%) scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
    .hero::before,
    .hero::after {
        animation: none;
    }
}

.hero-content h1,
.hero-content h2 {
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
    background: var(--heading-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header {
    padding: 4rem 0;
    background:
    radial-gradient(circle at 30% 15%, rgba(255, 255, 255, 0.22), transparent 18rem),
    linear-gradient(135deg, #4f46e5, #8b5cf6);
}

.section-title {
    color: #4f46e5;
    font-size: clamp(1.8rem, 3vw, 2.45rem);
    letter-spacing: -0.035em;
}

.story-content,
.stat,
.feature-card,
.industry-card,
.mission-card,
.vision-card,
.values-card,
.why-item,
.difference-card,
.industry,
.case-section,
.industry-section,
.industry-challenges,
.industry-solutions,
.industry-result,
.deployment-card,
.service-main-card,
.service-detail,
.package,
.pricing-card,
.contact-form,
.process-item,
.expertise-card,
.reason {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 22px;
    box-shadow: 0 10px 28px var(--card-shadow);
}

.story-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 2rem;
}

.stat {
    border-left: 0;
}

.feature-icon,
.industry-icon,
.card-icon,
.why-icon,
.service-icon,
.industry-icon-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 1.1rem;
    background: linear-gradient(135deg, var(--icon-bg-1), var(--icon-bg-2));
    color: var(--icon-color);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.feature-icon svg,
.industry-icon svg,
.card-icon svg,
.why-icon svg,
.service-icon svg,
.industry-icon-large svg {
    width: 1.1em;
    height: 1.1em;
}

.contact-wrapper {
    grid-template-columns: 1fr;
    max-width: 820px;
    margin: 0 auto;
}

.btn-primary,
.btn-secondary,
.btn-large {
    border-radius: 999px;
    text-decoration: none;
}

@media (max-width: 900px) {
    .hero .container,
    .features-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }
}

.container,
.navbar .container,
.contact-page-section .container {
    max-width: 100%;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
}

.story-content,
.contact-wrapper {
    max-width: 100%;
}

.section-subtitle {
    max-width: 100%;
}

.mission-vision-grid,
.why-grid,
.differences-grid,
.industries-list,
.features-grid,
.industries-grid,
.services-grid-main,
.deployment-grid,
.packages-grid,
.pricing-grid,
.expertise-grid,
.reasons-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.case-study-content,
.industry-content {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.hero .container {
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
}

@media (max-width: 900px) {
    .container,
    .navbar .container,
    .contact-page-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero .container,
    .case-study-content,
    .industry-content {
        grid-template-columns: 1fr;
    }
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme]) {
        color-scheme: dark;
        --text-dark: #eef0fb;
        --text-light: #a3a8c7;
        --bg-light: #0d0f1c;
        --bg-white: #12162a;
        --border-color: #262b47;
        --bg-page-start: #0b0e1a;
        --bg-page-end: #12162a;
        --hero-bg-start: #0f1224;
        --hero-bg-end: #171b34;
        --nav-bg: rgba(13, 15, 28, 0.85);
        --card-bg: rgba(24, 27, 46, 0.92);
        --card-border: rgba(129, 140, 248, 0.22);
        --card-shadow: rgba(0, 0, 0, 0.45);
        --input-bg: #0f111f;
        --input-border: rgba(129, 140, 248, 0.28);
        --icon-bg-1: rgba(129, 140, 248, 0.22);
        --icon-bg-2: rgba(236, 72, 153, 0.22);
        --icon-color: #a5b4fc;
        --heading-gradient: linear-gradient(135deg, #818cf8, #c084fc 55%, #f472b6);
        --surface: #12162a;
        --surface-soft: #171b34;
        --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.5);
        --shadow-card: 0 10px 28px rgba(0, 0, 0, 0.4);
    }
}

:root[data-theme="dark"] {
    color-scheme: dark;
    --text-dark: #eef0fb;
    --text-light: #a3a8c7;
    --bg-light: #0d0f1c;
    --bg-white: #12162a;
    --border-color: #262b47;
    --bg-page-start: #0b0e1a;
    --bg-page-end: #12162a;
    --hero-bg-start: #0f1224;
    --hero-bg-end: #171b34;
    --nav-bg: rgba(13, 15, 28, 0.85);
    --card-bg: rgba(24, 27, 46, 0.92);
    --card-border: rgba(129, 140, 248, 0.22);
    --card-shadow: rgba(0, 0, 0, 0.45);
    --input-bg: #0f111f;
    --input-border: rgba(129, 140, 248, 0.28);
    --icon-bg-1: rgba(129, 140, 248, 0.22);
    --icon-bg-2: rgba(236, 72, 153, 0.22);
    --icon-color: #a5b4fc;
    --heading-gradient: linear-gradient(135deg, #818cf8, #c084fc 55%, #f472b6);
    --surface: #12162a;
    --surface-soft: #171b34;
    --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.5);
    --shadow-card: 0 10px 28px rgba(0, 0, 0, 0.4);
}

:root[data-theme="light"] {
    color-scheme: light;
}

[data-theme="dark"] .hero::before {
    background: radial-gradient(circle, rgba(236, 72, 153, 0.22), transparent 70%);
}

[data-theme="dark"] .hero::after {
    background: radial-gradient(circle, rgba(99, 102, 241, 0.22), transparent 70%);
}

[data-theme="dark"] .form-group input::placeholder,
[data-theme="dark"] .form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.8;
}

[data-theme="dark"] .btn-secondary:hover {
    background: rgba(129, 140, 248, 0.16);
}

[data-theme="dark"] .footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.08);
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    color: var(--text-dark);
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.theme-toggle:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.theme-toggle svg {
    width: 1.2rem;
    height: 1.2rem;
}

.theme-toggle .icon-moon {
    display: none;
}

[data-theme="dark"] .theme-toggle .icon-sun {
    display: none;
}

[data-theme="dark"] .theme-toggle .icon-moon {
    display: block;
}

@media (max-width: 700px) {
    .case-study-content,
    .industry-content {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 480px) {
    .results-grid,
    .pricing-grid,
    .pricing-factors,
    .pricing-philosophy,
    .packages-grid,
    .deployment-grid,
    .differences-grid,
    .engagement-models,
    .expertise-grid,
    .factors-list,
    .faq-grid,
    .included-grid,
    .industries-list,
    .models-grid,
    .philosophy-grid,
    .principles-grid,
    .promises-grid,
    .reasons-grid,
    .services-grid-main,
    .support-grid,
    .whats-included,
    .why-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* ===== Legal Page Quick Nav (Privacy / Terms) ===== */
.policy-toc {
    max-width: 860px;
    margin: 0 auto 2rem;
    padding: 1.5rem 2rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
}

.policy-toc h2 {
    font-size: 1.05rem;
    margin-bottom: 0.9rem;
    color: var(--text-dark);
}

.policy-toc ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem 1.5rem;
    padding: 0;
    margin: 0;
}

.policy-toc a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.95rem;
}

.policy-toc a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .policy-toc ul {
        grid-template-columns: 1fr;
    }
}

.policy-section {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    scroll-margin-top: 100px;
}

.policy-section:first-of-type {
    padding-top: 0;
    margin-top: 0;
    border-top: none;
}

.back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.back-to-top:hover {
    text-decoration: underline;
}

/* .services-grid-main appears in every shared grid-template-columns/gap rule
   but never actually had display: grid declared anywhere, so it rendered as
   a plain block and the three service cards stacked full-width instead of
   sitting side by side like every other card grid on the site. */
.services-grid-main {
    display: grid;
}

/* ===== Products Nav Dropdown ===== */
.nav-item-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: none;
    border: none;
    font: inherit;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    border-radius: 999px;
    padding: 0.45rem 0.75rem;
    transition: color 0.3s ease, background 0.3s ease;
}

.nav-dropdown-toggle:hover,
.nav-item-dropdown.open .nav-dropdown-toggle {
    background: rgba(99, 102, 241, 0.08);
    color: var(--primary-color);
}

.dropdown-chevron {
    width: 0.85rem;
    height: 0.85rem;
    transition: transform 0.2s ease;
}

.nav-item-dropdown:hover .dropdown-chevron,
.nav-item-dropdown.open .dropdown-chevron {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.6rem;
    min-width: 190px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(31, 41, 55, 0.16);
    padding: 0.5rem;
    z-index: 1002;
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown.open .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.65rem 0.9rem;
    border-radius: 10px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown-menu a:hover {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .nav-item-dropdown {
        width: 100%;
    }

    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 0.85rem 1rem;
        border-radius: 12px;
    }

    .nav-dropdown-menu {
        display: none;
        position: static;
        margin-top: 0.2rem;
        box-shadow: none;
        border: none;
        background: rgba(99, 102, 241, 0.06);
        padding: 0.3rem;
    }

    .nav-item-dropdown:hover .nav-dropdown-menu {
        display: none;
    }

    .nav-item-dropdown.open .nav-dropdown-menu {
        display: block;
    }
}
