﻿:root {
    --primary: #23225E;
    /* Unifier Navy Blue */
    --primary-light: #2EAB61;
    /* Unifier Green */
    --secondary: #1E88E5;
    /* Bright Blue */
    --secondary-hover: #1565C0;
    --accent: #27AE60;
    --dark: #1A194D;
    --light: #F8FAFC;
    --white: #ffffff;
    --text-main: #2D3748;
    --text-muted: #718096;
    --border: #E2E8F0;
    --shadow: 0 10px 40px -10px rgba(35, 34, 94, 0.15);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 100%;
    padding: 0 2rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary);
    color: var(--white) !important;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-hover));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-lg {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Header */
#main-header {
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

#main-header.sticky {
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#main-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 45px;
    width: auto;
    display: block;
}

.footer-brand img {
    height: 40px;
    width: auto;
    margin-bottom: 1.5rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Main Navigation */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links li a {
    font-weight: 500;
}

.nav-links li a:hover {
    color: var(--primary);
}

/* Page Hero */
.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    margin-bottom: 2rem;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-hero h1 span {
    color: var(--white);
    opacity: 0.9;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light);
}

.text-center {
    text-align: center;
}

/* Detailed Services */
.detailed-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.detailed-card.reverse .detailed-image {
    order: 2;
}

.detailed-image img {
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.detailed-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.detailed-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.detailed-content ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.detailed-content ul li i {
    color: var(--primary-light);
}

.detailed-content .btn {
    margin-top: 2rem;
}

/* Service Benefits */
.service-benefits {
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: var(--light);
    border-radius: 20px;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Why Choose Section */
.why-choose {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.why-item {
    position: relative;
    padding: 2.5rem;
    background: var(--light);
    border-radius: 20px;
    transition: var(--transition);
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    background: var(--white);
}

.why-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(35, 34, 94, 0.08);
    font-family: 'Outfit';
    line-height: 1;
    margin-bottom: 1rem;
}

.why-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.why-item p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Services CTA */
.services-cta .cta-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 4rem;
    border-radius: 30px;
    text-align: center;
    color: var(--white);
}

.services-cta .cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-cta .cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

/* Contact & Review Page Styles */
.contact-page {
    padding: 120px 0 60px;
}
.contact-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}
.contact-form,
.contact-review {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.contact-form h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}
.contact-form label {
    display: block;
    font-weight: 600;
    margin-top: 0.8rem;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-top: 0.4rem;
}
.contact-form button,
.review-form button {
    margin-top: 1rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
}
.review-form .rating {
    margin-bottom: 0.6rem;
}
.stars input { display: none; }
.stars label {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 6px;
    background: var(--light);
    margin-right: 6px;
    cursor: pointer;
}
.stars input:checked + label,
.stars label:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
}
.contact-review { position: sticky; top: 120px; }

@media (max-width: 900px) {
    .contact-section { grid-template-columns: 1fr; }
    .contact-review { position: static; margin-top: 1rem; }
    .container { padding: 0 1rem; }
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.tech-item {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.tech-item:hover {
    transform: translateY(-5px);
}

.tech-icon {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
}

.tech-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Values & Mission */
.mission-points {
    margin-top: 2rem;
}

.point {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.point i {
    font-size: 2rem;
    color: var(--primary-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.value-item {
    padding: 2rem;
}

.value-item i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

/* Hero */
#hero {
    padding-top: 160px;
    padding-bottom: 100px;
    background: radial-gradient(circle at top right, #EEF2FF, #ffffff);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(35, 34, 94, 0.08);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

#hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

#hero h1 span {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.hero-btns .btn-outline {
    color: var(--primary);
    border-color: var(--primary);
}

.hero-image {
    position: relative;
}

.image-wrapper {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    overflow: hidden;
    box-shadow: var(--shadow), inset 0 0 50px rgba(0, 0, 0, 0.2);
    position: relative;
}

.image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    z-index: 2;
}

.hero-slider {
    position: relative;
    height: 500px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.stats-card {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.icon-box {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Value Prop */
#value-prop {
    padding: 100px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.value-card {
    padding: 3rem;
    border-radius: 24px;
    transition: var(--transition);
}

.value-card.problem {
    background-color: #FEF2F2;
    border: 1px solid #FEE2E2;
}

.value-card.solution {
    background-color: #F0FDF4;
    border: 1px solid #DCFCE7;
}

.value-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.value-card.problem .icon {
    color: #EF4444;
}

.value-card.solution .icon {
    color: #10B981;
}

.value-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Network Stats */
#network {
    padding-bottom: 100px;
}

.network-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-muted);
    font-weight: 600;
}

/* Services */
#services {
    padding: 100px 0;
    background-color: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.section-header h2 span {
    color: var(--primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
}

.service-card.active {
    background: var(--primary);
    color: var(--white);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.service-card.active .service-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.service-card.active p {
    color: rgba(255, 255, 255, 0.8);
}

.link-btn {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
}

.service-card.active .link-btn {
    color: var(--white);
    opacity: 0.9;
}

/* Industries */
#industries {
    padding: 100px 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.industry-item {
    background: var(--light);
    padding: 2.5rem 1rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.industry-item:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.industry-item i {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--primary-light);
}

.industry-item:hover i {
    color: var(--white);
}

.industry-item h4 {
    font-size: 1rem;
}

/* Process */
#process {
    padding: 100px 0;
}

.process-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

#process h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
}

#process h2 span {
    color: var(--primary);
}

.step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-num {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(35, 34, 94, 0.08);
    font-family: 'Outfit';
    line-height: 1;
}

.step h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.process-image img {
    border-radius: 30px;
    box-shadow: var(--shadow);
}

/* Testimonials */
#testimonials {
    padding: 80px 0;
    background: var(--dark);
    color: var(--white);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 2rem;
}

.testimonial-text {
    font-size: 1.8rem;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 2.5rem;
    line-height: 1.4;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h5 {
    font-size: 1.1rem;
}

.testimonial-author p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Contact Section */
#contact {
    background: var(--light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.info-item p {
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: var(--transition);
    background: var(--light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    width: 100%;
    margin-top: 1rem;
}

/* CTA */
#cta {
    padding: 100px 0;
}

.cta-box {
    background: linear-gradient(rgba(35, 34, 94, 0.9), rgba(35, 34, 94, 0.9)), url('assets/cta-bg.webp');
    background-size: cover;
    background-position: center;
    padding: 5rem;
    border-radius: 30px;
    text-align: center;
    color: var(--white);
}

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Footer */
#main-footer {
    padding: 80px 0 30px;
    background: var(--light);
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 50px;
}

.footer-brand p {
    margin: 1.5rem 0;
    color: var(--text-muted);
}

.socials {
    display: flex;
    gap: 1rem;
}

.socials a {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    color: var(--primary);
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--text-muted);
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.footer-contact i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
/* Responsive Adjustments */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    #hero h1 {
        font-size: 2.8rem;
    }

    .hero-grid,
    .detailed-card,
    .process-wrapper,
    .footer-grid,
    .tech-grid,
    .grid-2,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .detailed-card.reverse .detailed-image {
        order: 0;
    }

    .network-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        gap: 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        font-size: 1.2rem;
        padding: 1rem;
        display: block;
    }
}

@media (max-width: 768px) {
    #hero {
        padding-top: 120px;
    }

    #hero h1 {
        font-size: 2.2rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-btns .btn {
        width: 100%;
    }

    .services-grid,
    .industries-grid,
    .network-stats {
        grid-template-columns: 1fr !important;
    }

    .stats-card {
        left: 0;
        bottom: 10px;
        padding: 1rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .detailed-content h2 {
        font-size: 2rem;
    }

    .footer-grid {
        text-align: center;
    }

    .socials {
        justify-content: center;
    }

    .cta-box {
        padding: 3rem 1.5rem;
    }

    .cta-box h2 {
        font-size: 2rem;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 2rem;
    }

    .benefits-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .services-cta .cta-box {
        padding: 2.5rem 1.5rem;
    }
}