:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary: #0f172a;
    --accent: #06b6d4;
    --accent-light: #67e8f9;
    --text: #64748b;
    --text-dark: #1e293b;
    --text-light: #94a3b8;
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --bg-warm: #fafaf9;
    --white: #ffffff;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.08);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.1);
    --radius: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.2px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-dark {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border);
}

.btn-outline-dark:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    font-weight: 600;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.section-label {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-title span {
    color: var(--primary);
}

.section-desc {
    font-size: 17px;
    color: var(--text);
    max-width: 600px;
    line-height: 1.8;
}

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

.text-center .section-desc {
    margin: 0 auto;
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: box-shadow 0.3s ease;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    height: 72px;
}

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

.logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

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

.footer-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    background: white;
    border-radius: var(--radius);
    padding: 10px 14px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.03);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    font-weight: 500;
    font-size: 15px;
    color: var(--text);
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
    border-radius: 1px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

.nav-btn {
    padding: 10px 24px;
    font-size: 14px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
}

/* ==================== HERO ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 40%, #1a4a6e 70%, #0c4a6e 100%);
    padding-top: 72px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80') center/cover no-repeat;
    opacity: 0.12;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8), transparent);
    z-index: 0;
}

.hero-glow-1 {
    position: absolute;
    top: -15%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(80px);
}

.hero-glow-2 {
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(80px);
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    padding: 40px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    letter-spacing: 0.5px;
}

.hero-badge i {
    font-size: 11px;
    color: var(--accent-light);
}

.hero h1 {
    font-size: 54px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.12;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero h1 span {
    color: var(--accent-light);
    -webkit-text-fill-color: var(--accent-light);
}

.hero h1 span::after {
    display: none;
}

.hero p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 14px;
    margin-bottom: 48px;
}

.hero-trust {
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-trust-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 14px;
    font-weight: 500;
}

.hero-trust-logos {
    display: flex;
    gap: 28px;
    align-items: center;
}

.hero-trust-logos i {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.25);
    transition: all 0.3s;
}

.hero-trust-logos i:hover {
    color: rgba(255, 255, 255, 0.6);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: 460px;
    background: url('https://images.unsplash.com/photo-1551434678-e076c223a692?w=800&q=80') center/cover no-repeat;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.3) 0%, rgba(6, 182, 212, 0.15) 100%);
    z-index: 1;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    padding: 18px 24px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 14px;
    animation: float 5s ease-in-out infinite;
    z-index: 10;
}

.floating-card.card-1 {
    top: 30px;
    left: -30px;
}

.floating-card.card-2 {
    bottom: 50px;
    right: -20px;
    animation-delay: 2.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-card i {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.floating-card.card-2 i {
    background: linear-gradient(135deg, var(--accent), #0891b2);
}

.floating-card h4 {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 1px;
}

.floating-card p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

/* ==================== STATS STRIP ==================== */
.stats-strip {
    background: var(--white);
    padding: 0;
    position: relative;
    z-index: 2;
    margin-top: -50px;
}

.stats-strip-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 44px 30px;
    border: 1px solid var(--border-light);
}

.strip-stat {
    text-align: center;
    padding: 10px 16px;
    position: relative;
}

.strip-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: var(--border);
}

.strip-stat-num {
    font-size: 34px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.strip-stat-text {
    font-size: 13px;
    color: var(--text);
    font-weight: 500;
}

/* ==================== SERVICES ==================== */
.services {
    padding: 120px 0;
    background: var(--bg-soft);
}

.services-header {
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all 0.35s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: all 0.35s;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    transform: scale(1.05);
}

.service-icon i {
    font-size: 24px;
    color: var(--primary);
    transition: all 0.35s;
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.service-card p {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 18px;
    line-height: 1.7;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.service-card:hover .service-link {
    gap: 10px;
}

.service-link i {
    font-size: 12px;
    transition: transform 0.3s;
}

/* ==================== WHY US ==================== */
.why-us {
    padding: 120px 0;
    background: var(--white);
}

.why-us-header {
    margin-bottom: 60px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--bg-soft);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all 0.35s ease;
    text-align: center;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
    border-color: transparent;
}

.why-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.35s;
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    transform: scale(1.05);
}

.why-icon i {
    font-size: 26px;
    color: var(--primary);
    transition: color 0.35s;
}

.why-card:hover .why-icon i {
    color: var(--white);
}

.why-card h3 {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.why-card p {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.7;
}

.why-stat {
    display: inline-block;
    background: rgba(37, 99, 235, 0.06);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

/* ==================== ABOUT ==================== */
.about {
    padding: 120px 0;
    background: var(--bg-soft);
    position: relative;
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img {
    width: 100%;
    height: 480px;
    background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=800&q=80') center/cover no-repeat;
    border-radius: var(--radius-lg);
    position: relative;
    box-shadow: var(--shadow-xl);
}

.about-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(6, 182, 212, 0.08) 100%);
    border-radius: var(--radius-lg);
}

.about-img:hover {
    transform: translateY(-4px);
    transition: transform 0.4s ease;
}

.about-img::after {
    display: none;
}

.experience-box {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--white);
    padding: 24px 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.experience-box:hover {
    transform: translateY(-3px);
}

.experience-box .num {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    -webkit-text-fill-color: var(--primary);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.experience-box .text {
    font-size: 13px;
    color: var(--text);
    margin-top: 4px;
    font-weight: 500;
}

.about-content .section-desc {
    margin-bottom: 28px;
}

.about-list {
    list-style: none;
    margin-bottom: 32px;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    color: var(--text-dark);
}

.about-list li i {
    width: 22px;
    height: 22px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 10px;
    flex-shrink: 0;
    margin-top: 3px;
}

/* ==================== PROCESS ==================== */
.process {
    padding: 120px 0;
    background: var(--white);
}

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

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 52px;
    left: 14%;
    right: 14%;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    background: var(--bg-soft);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    transition: all 0.35s ease;
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
    border-color: transparent;
}

.process-num {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.process-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
    transition: all 0.35s;
}

.process-step:hover .process-icon {
    transform: scale(1.08);
}

.process-icon i {
    font-size: 22px;
    color: #ffffff;
}

.process-step h3 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.process-step p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
}

/* ==================== INDUSTRIES ==================== */
.industries {
    padding: 120px 0;
    background: var(--bg-soft);
}

.industries-header {
    margin-bottom: 60px;
}

.industries-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.industry-item {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 32px 20px;
    text-align: center;
    transition: all 0.35s ease;
}

.industry-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.industry-item i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 14px;
    display: block;
    transition: transform 0.3s;
}

.industry-item:hover i {
    transform: scale(1.1);
}

.industry-item h4 {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1920&q=80') center/cover no-repeat;
    opacity: 0.06;
}

.testimonials .section-label {
    color: var(--accent-light);
    -webkit-text-fill-color: var(--accent-light);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials .section-title span {
    color: var(--accent-light);
}

.testimonials .section-desc {
    color: rgba(255, 255, 255, 0.6);
}

.testimonials-header {
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: blur(12px);
    transition: all 0.35s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.testimonial-card .stars {
    color: #fbbf24;
    margin-bottom: 18px;
    font-size: 14px;
}

.testimonial-card .stars i {
    margin-right: 2px;
}

.testimonial-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin-bottom: 24px;
    font-style: italic;
    line-height: 1.7;
}

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

.author-avatar {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
}

.author-info h4 {
    color: var(--white);
    font-size: 15px;
    margin-bottom: 2px;
}

.author-info span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

/* ==================== CTA ==================== */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #0284c7 50%, var(--accent) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?w=1920&q=80') center/cover no-repeat;
    opacity: 0.06;
}

.cta::after {
    display: none;
}

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

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 28px;
}

.cta-trust {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-trust span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cta-trust span i {
    color: rgba(255, 255, 255, 0.9);
}

.cta h2 {
    font-size: 38px;
    color: var(--white);
    margin-bottom: 14px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.cta h2 span {
    color: var(--white);
    -webkit-text-fill-color: var(--white);
    background: none;
    -webkit-background-clip: unset;
}

.cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== FOOTER ==================== */
.footer {
    background: #0f172a;
    padding: 70px 0 28px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.6fr;
    gap: 48px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 18px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    margin-bottom: 22px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 22px;
    font-weight: 600;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    transition: all 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent-light);
    padding-left: 4px;
}

.footer-col ul li a::before {
    display: none;
}

.footer-col .contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-col .contact-item i {
    color: var(--accent);
    font-size: 15px;
    margin-top: 3px;
}

.footer-col .contact-item p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    line-height: 1.6;
}

.footer-offices {
    min-width: 0;
}

.footer-office {
    margin-bottom: 12px;
}

.footer-office strong {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}

.footer-office strong i {
    color: var(--accent);
    margin-right: 6px;
    font-size: 12px;
}

.footer-office p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    line-height: 1.5;
}

.footer-contact-info {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-bottom: 6px;
}

.footer-contact-info p i {
    color: var(--accent);
    margin-right: 8px;
    width: 14px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    text-align: center;
    position: relative;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

.footer-bottom a {
    color: var(--accent);
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--accent-light);
}

.footer-bottom::before {
    display: none;
}

/* ==================== SCROLL TOP ==================== */
.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    font-size: 16px;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

/* ==================== PAGE HERO ==================== */
.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0c4a6e 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80') center/cover no-repeat;
    opacity: 0.08;
}

.page-hero h1 {
    color: var(--white);
    font-size: 44px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.page-hero h1 span {
    color: var(--accent-light);
    -webkit-text-fill-color: var(--accent-light);
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: var(--white);
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--accent-light);
}

/* ==================== PAGE SECTIONS ==================== */
.page-section {
    padding: 100px 0;
}

.page-section.alt {
    background: var(--bg-soft);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.vm-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.35s ease;
}

.vm-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.vm-card .icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
    transition: all 0.35s;
}

.vm-card:hover .icon {
    transform: scale(1.06);
}

.vm-card .icon i {
    font-size: 28px;
    color: var(--white);
}

.vm-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.vm-card p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    text-align: center;
    padding: 28px 20px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all 0.35s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.team-card .icon {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.team-card .icon i {
    font-size: 24px;
    color: var(--primary);
}

.team-card h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-weight: 600;
}

.team-card p {
    font-size: 13px;
    color: var(--text);
}

/* ==================== STATS BAR ==================== */
.stats-bar {
    background: linear-gradient(135deg, var(--primary) 0%, #0284c7 50%, var(--accent) 100%);
    padding: 60px 0;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-box .num {
    font-size: 46px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -1px;
}

.stat-box .label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ==================== SERVICES FULL ==================== */
.services-full {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-full-card {
    display: flex;
    gap: 22px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.35s ease;
}

.service-full-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-full-card::before {
    display: none;
}

.service-full-card .icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.2);
    transition: all 0.35s;
}

.service-full-card:hover .icon {
    transform: scale(1.05);
}

.service-full-card .icon i {
    font-size: 24px;
    color: var(--white);
}

.service-full-card h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.service-full-card p {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 14px;
}

.service-full-card ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.service-full-card ul li {
    font-size: 13px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-full-card ul li i {
    color: var(--primary);
    font-size: 10px;
}

/* ==================== PROCESS (services page) ==================== */
.process-step::after {
    display: none;
}

.step-num {
    width: 70px;
    height: 70px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 auto 20px;
}

.process-step h4 {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

/* ==================== CONTACT ==================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 30px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.contact-info > p {
    color: var(--text);
    margin-bottom: 36px;
    line-height: 1.8;
}

.contact-list {
    margin-bottom: 36px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
}

.contact-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item .icon i {
    font-size: 20px;
    color: var(--primary);
}

.contact-item h4 {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-item p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}

.contact-social {
    display: flex;
    gap: 10px;
}

.contact-social a {
    width: 42px;
    height: 42px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 16px;
    transition: all 0.3s;
}

.contact-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.contact-form-box {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.contact-form-box h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 28px;
    font-weight: 600;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s;
    background: var(--bg-soft);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
    background: var(--white);
}

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

.alert {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
}

.global-offices {
    padding: 80px 0;
    background: var(--bg-soft);
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.office-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.office-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s;
}

.office-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.office-card:hover::before {
    opacity: 1;
}

.office-flag {
    font-size: 32px;
    margin-bottom: 16px;
}

.office-flag i {
    color: var(--primary);
}

.office-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.office-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    background: rgba(37, 99, 235, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.office-details {
    text-align: left;
}

.office-details p {
    font-size: 13px;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.office-details p i {
    color: var(--primary);
    font-size: 13px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 14px;
    text-align: center;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .services-grid,
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .process-grid::before {
        display: none;
    }

    .stats-strip-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border-light);
    }

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

    .nav-links li {
        padding: 12px 0;
        border-bottom: 1px solid var(--border-light);
    }

    .mobile-toggle {
        display: block;
    }

    .nav-btn {
        display: none;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-trust {
        text-align: center;
    }

    .hero-trust-logos {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

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

    .strip-stat:not(:last-child)::after {
        display: none;
    }

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

    .services-grid,
    .testimonials-grid,
    .vm-grid,
    .services-full,
    .why-us-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .experience-box {
        position: relative;
        bottom: auto;
        right: auto;
        margin: -24px auto 0;
        width: fit-content;
    }

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

    .service-full-card {
        flex-direction: column;
    }

    .service-full-card ul {
        grid-template-columns: 1fr;
    }

    .team-grid,
    .stats-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .cta h2 {
        font-size: 28px;
    }

    .page-hero h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .stats-strip-grid {
        grid-template-columns: 1fr;
    }

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

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

    .cta-trust {
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 26px;
    }
}
