/* Base */
* { 
    box-sizing: border-box; 
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;

}
html, body { height: 100%; }
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #0b0d12;
    background: #fff;
}

/* Reusable container to unify section widths */
.container {
    max-width: 1340px;
    width: 100%;
    margin: 0 auto;
    /* padding: 0 20px; */
}

/* Hero */
.hero {
    position: relative;
    height: 672px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 16px;
    overflow: hidden;
    margin: 40px auto 140px;

    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/bg.jpg") center/contain no-repeat;
}


/* Navigation */
.nav, .hero-content, .brand, .nav-left, .nav-right { position: relative; z-index: 2; }

.nav {
    top: 10px;
    z-index: 1000;
    background: #ffffff;
    padding: 12px 40px;
    width: 100%;
    margin: 0 auto 12px;
}

/* Desktop Navigation */
.nav-desktop {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.nav-left, .nav-right {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 100px;
}

.nav-right { justify-content: flex-end; }

.nav a {
    color: rgba(11,13,18,0.85);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav a:hover { color: #0b0d12; }

.brand { text-align: center; line-height: 1.1; }
.brand img {
    max-width: 100px;
    transition: opacity 0.3s ease;
}
.brand a:hover img { opacity: 0.8; }

/* Mobile Navigation */
.nav-mobile {
    display: none;
    justify-content: space-between;
    align-items: center;
}

.burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1001;
}

.burger-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background: #0b0d12;
    margin: 3px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0b0d12 0%, #1a1d23 100%);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
    position: relative;
}

.mobile-menu-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 60px 0 0;
    flex: 1;
}

.mobile-nav-links li {
    margin-bottom: 8px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease;
}

.mobile-menu-overlay.active .mobile-nav-links li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-links li:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav-links li:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav-links li:nth-child(4) { transition-delay: 0.4s; }
.mobile-nav-links li:nth-child(5) { transition-delay: 0.5s; }
.mobile-nav-links li:nth-child(6) { transition-delay: 0.6s; }

.mobile-nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 2.2rem;
    font-weight: 600;
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: rgba(255,255,255,0.7);
    padding-left: 16px;
}

.mobile-menu-footer {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.7s;
}

.mobile-menu-overlay.active .mobile-menu-footer {
    opacity: 1;
    transform: translateY(0);
}

.mobile-contact p {
    margin: 8px 0;
    color: rgba(255,255,255,0.8);
    font-size: 16px;
}

.mobile-contact a {
    color: #ffffff;
    text-decoration: none;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

.hero-content { 
    max-width: 980px; 
    padding: 0; 
    color: #ffffff; 

    position: absolute;
    bottom: 0;
    left: 50px;
    bottom: 50px;
}

.hero-title {
    font-size: 4rem;
    margin: 0 0 24px;
    line-height: 1.1;
    font-weight: 700;
}

.hero-subcopy {
    max-width: 840px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    font-size: 14px;
}

@media (max-width: 768px) {
    .hero { padding: 20px 16px 32px; margin: 0 12px 80px; border-radius: 12px; }
    .nav { padding: 10px 16px; }
    .nav-left, .nav-right { gap: 14px; }
    .brand-initials { font-size: 22px; }
    .brand-name { font-size: 10px; }
    .hero-content { padding: 16px; }
}

/* Services */
.services {
    max-width: 100%;
    width: 100%;
    margin: 140px auto 180px;
    padding: 0 40px;
}

/* Services V2 - Dark block with 3 columns */
.services-v2 {
    max-width: 1340px;
    width: 100%;
    margin: 60px auto 160px;
}
.services-v2-inner {
    background: #0b0d12;
    border-radius: 16px;
    padding: 100px 60px;
    color: #fff;
}
.services-v2-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.services-v2-title {
    font-size: 4rem;
    line-height: 1.2;
    margin: 0 0 8px;
}
.services-v2-label {
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    letter-spacing: 5px;
}
.services-v2-grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 28px;
}
.svc-card {
    background: #1A1A1A;
    border-radius: 10px;
    padding: 22px 22px 16px;
    color: #e5e7eb;
    position: relative;

    border: 1px solid rgba(255,255,255,0.1);
}
.svc-card h3 { margin: 0 0 10px; color: #fff; font-size: 22px; }
.svc-card p { margin: 0; color: #fff; line-height: 1.55; font-weight: 300;}
.svc-icon-wrap { width: 48px; height: 48px; margin-bottom: 14px; }
.svc-icon { width: 100%; height: 100%; object-fit: contain; }
.svc-illustration { display: block; width: 44%; height: auto; object-fit: contain; opacity: 0.95; }
.svc-left { grid-row: span 2; }
.svc-right { grid-row: span 2; }
.svc-bot { grid-column: 2 / span 1; }

@media (max-width: 980px) {
    .services-v2 { padding: 0 24px; }
    .services-v2-title { font-size: 2.6rem; }
    .services-v2-grid { grid-template-columns: 1fr 1fr; }
    .svc-left, .svc-right { grid-row: auto; }
    .svc-bot { grid-column: auto; }
}
@media (max-width: 640px) {
    .services-v2 { padding: 0; margin: 40px auto 120px; }
    .services-v2-grid { grid-template-columns: 1fr; }
}

.si-1 {
    max-width: 80%;
    width: 100%;
    margin: 110px auto 0;
}

.si-2 {
    max-width: 80%;
    width: 100%;
}

.services-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 20px;
    padding: 0 40px;
}

.services-title {
    color: #0b0d12;
    margin: 0 0 12px;
    font-weight: 600;
    font-size: 4rem;
    line-height: 1.2;
}

.services-label {
    color: rgba(2,6,23,0.5);
    font-size: 12px;
    letter-spacing: 5px;
    margin-bottom: 8px;
}

.services-subcopy {
    font-size: .9rem;
    line-height: 1.5;
    color: #000;
    margin: 0;
    max-width: 450px;
    align-self: end;
}



.services-track-wrap {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    align-items: center;
}

.services-track {
    overflow-x: auto;
    scroll-behavior: smooth;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 1fr);
    gap: 24px;
    padding: 8px 8px 16px;
}

.service-card {
    background: #e0e0e0;
    color: #0b0d12;
    border-radius: 8px;
    padding: 24px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-card h3 { margin: 0 0 10px; font-size: 18px; }
.service-card p { margin: 0; color: rgba(11,13,18,0.85); line-height: 1.55; }

.srv-btn {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(11,13,18,0.15);
    background: #ffffff;
    color: #0b0d12;
    cursor: pointer;
}
.srv-btn[disabled] { opacity: 0.4; cursor: default; }

@media (max-width: 768px) {
    .services { padding: 0 16px; margin: 100px auto 120px; }
    .services-track { grid-auto-columns: 80%; }
    .services-header { padding: 0; }
}

/* Industries */
.industries {
    width: 100%;
    padding: 0 40px;
    margin: 0 auto 180px;
}

.industries-header {

    align-items: center;
    margin-bottom: 24px;

    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr auto;

    margin-bottom: 60px;
}


.industries-subcopy {
    font-size: .9rem;
    line-height: 1.5;
    color: #000;
    max-width: 450px;
}

.industries-title {
    color: #0b0d12;
    margin: 0 0 12px;
    font-weight: 600;
    font-size: 4rem;
    line-height: 1.2;
}

.industries-label {
    color: rgba(2,6,23,0.5);
    font-size: 12px;
    letter-spacing: 5px;
    margin-bottom: 5px;
    display: block;
}

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

.industry-card {
    position: relative;
    height: 340px;
    overflow: hidden;
}

.industry-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    scale: 1.1;

    transition: all 0.3s ease-in-out;
}

.industry-card:hover .industry-bg {
    scale: 1;
}

.industry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2,6,23,0.65), rgba(2,6,23,0.35));
}

.industry-text {
    position: absolute;
    left: 30px;
    bottom: 28px;
    right: 30px;
    color: #fff;
}
.industry-text h3 { margin: 0 0 6px; font-size: 2rem; }
.industry-text p { margin: 0; color: rgba(255,255,255,0.9); }

@media (max-width: 980px) {
    .industries { padding: 0 24px; margin: 0 auto 140px; }
    .industry-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .industries { padding: 0 16px; margin: 0 auto 100px; }
    .industry-grid { grid-template-columns: 1fr; }
}

/* Process */
.process {
    width: 100%;
    margin: 180px auto 220px;
    padding: 0 40px;
}

.process-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
    padding: 0 40px;
}

.process-title {
    color: #0b0d12;
    margin: 0 0 12px;
    font-weight: 600;
    font-size: 4rem;
}

.process-label { color: rgba(2,6,23,0.5); font-size: 12px; letter-spacing: 5px; margin-bottom: 8px; }

.process-subcopy {
    font-size: .9rem;
    line-height: 1.5;
    color: #000;
    margin: 0;
    max-width: 450px;
}



.process-layout {
    display: grid;
    grid-template-columns: 35% 1fr;
    gap: 40px;
}

.process-steps { display: grid; gap: 20px; align-content: start; }

.step-card {
    background: #f3f3f3;
    color: #0b0d12;
    padding: 18px 20px;
    border-radius: 10px;
    transition: background-color 180ms ease, box-shadow 180ms ease;
}
.step-card h3 { margin: 0 0 8px; font-size: 20px; }
.step-card p { margin: 0; color: rgba(11,13,18,0.85); line-height: 1.55; }

.step-card.is-active { background: #efefef; box-shadow: 0 0 0 2px rgba(11,13,18,0.12) inset; }

.process-media {
    position: relative;
    border-radius: 10px;
    min-height: 380px;
    overflow: hidden;
}

.process-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 400ms ease;
}
.process-image.is-visible { opacity: 1; }

@media (max-width: 980px) {
    .process { padding: 0 24px; }
    .process-layout { grid-template-columns: 1fr; }
    .process-media { min-height: 280px; }
    .process { margin: 140px auto 180px; }
    .process-header { padding: 0; }
    .services-title, .process-title, .partners-title, .industries-title { font-size: 2.6rem; }
    .hero { min-height: 560px; }
    .hero-content { position: static; transform: none; left: auto; bottom: auto; padding: 20px 0; }
    .nav a { font-size: 13px; }
    .partner-cell { padding: 28px 14px; }
}
@media (max-width: 640px) {
    .process { padding: 0 16px; margin: 100px auto 140px; }
    .services-title, .process-title, .partners-title, .industries-title { font-size: 2.2rem; }
    .hero { min-height: 460px; margin: 0 12px 60px; }
    .hero-content { padding: 12px 0; }
    .nav { padding: 10px 12px; }
    .nav-left, .nav-right { gap: 10px; flex-wrap: wrap; }
    .nav a { font-size: 12px; }
    .industry-card { height: 260px; }
    .partner-cell { padding: 20px 12px; }
}

/* Partners */
.partners {
    width: 100%;
    margin: 140px auto 180px;
    padding: 0 40px;
    --gap: 16px;
    --visible: 4;
}

.partners-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 40px;
    margin-bottom: 60px;
}

.partners-title {
    color: #0b0d12;
    margin: 0 0 12px;
    font-weight: 600;
    font-size: 4rem;
}

.partners-label { color: rgba(2,6,23,0.5); font-size: 12px; letter-spacing: 5px; margin-bottom: 8px; }
.partners-subcopy { font-size: .9rem; line-height: 1.5; color: #000; margin: 0; max-width: 450px;  }

/* Static grid, no animation */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 0 40px;
}
.partner-cell {
    background: #fff;
    border: 1px solid rgba(11,13,18,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 16px;
}

/* Logo appearance */
.partner-logo {
    max-height: 44px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1) contrast(1.05) brightness(0.7);
    transition: filter 180ms ease, opacity 180ms ease;
    opacity: 0.9;
}
.partner-cell:hover .partner-logo { filter: none; opacity: 1; }
.partner-logo:hover { opacity: 1; filter: none; }

@media (max-width: 980px) {
    .partners { padding: 0 24px; margin: 120px auto 160px; }
    .partners-header { padding: 0; }
    .partners-grid { grid-template-columns: repeat(3, 1fr); padding: 0; gap: 20px; }
    .partner-logo { max-height: 38px; }
}
@media (max-width: 640px) {
    .partners { padding: 0 16px; margin: 100px auto 120px; }
    .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 100%; }
    .partner-logo { max-height: 17px; }
}


/* Footer */
.site-footer {
    background: #0b0d12;
    color: #e6e8ee;
}

.footer-main {
    padding: 60px 40px;
    border-top: 1px solid rgba(230,232,238,0.08);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin: 0 0 20px;
    font-weight: 600;
}

/* Footer Brand Section */
.footer-brand-section {
    max-width: 320px;
}

.footer-brand {
    margin-bottom: 16px;
}

.footer-brand img {
    max-width: 120px;
}

.footer-tagline {
    color: rgba(230,232,238,0.8);
    line-height: 1.5;
    margin: 0 0 24px;
    font-size: 15px;
}

.footer-stats {
    display: flex;
    gap: 20px;
}

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

.stat-number {
    display: block;
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-label {
    color: rgba(230,232,238,0.7);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer Navigation */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav a {
    color: rgba(230,232,238,0.8);
    text-decoration: none;
    font-size: 14px;
    padding: 4px 0;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-nav a:hover {
    color: #ffffff;
    padding-left: 8px;
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-icon {
    font-size: 18px;
    margin-top: 2px;
    opacity: 0.8;
}

.contact-item p {
    margin: 0 0 2px;
    font-size: 14px;
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

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

.contact-sub {
    color: rgba(230,232,238,0.6);
    font-size: 12px;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 20px 40px;
    border-top: 1px solid rgba(230,232,238,0.08);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-left span {
    color: rgba(167,173,186,0.8);
    font-size: 12px;
}

.footer-bottom-right {
    display: flex;
    gap: 24px;
}

.footer-link {
    color: rgba(167,173,186,0.8);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: rgba(230,232,238,0.9);
}

/* Responsive Footer */
@media (max-width: 980px) {
    .footer-main { padding: 40px 0 30px; }
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-brand-section {
        grid-column: 1 / -1;
        max-width: none;
        text-align: center;
        margin-bottom: 20px;
    }
    .footer-stats {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .footer-main { padding: 32px 0 24px; }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer-bottom-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .footer-bottom-right {
        gap: 16px;
    }
}

/* Mobile Navigation Responsive */
@media (max-width: 768px) {
    .nav-desktop { display: none; }
    .nav-mobile { display: flex; }
}

/* Testimonials V2 - Light & Modern */
.testimonials-v2 {
    margin: 140px auto 160px;
    padding: 0 40px;
}

.testimonials-v2-inner {
    background: linear-gradient(135deg, #f8f9fb 0%, #ffffff 100%);
    border: 1px solid rgba(11,13,18,0.06);
    border-radius: 20px;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}

.testimonials-v2-inner::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(11,13,18,0.02) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-v2-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.testimonials-label {
    color: rgba(11,13,18,0.5);
    font-size: 12px;
    letter-spacing: 5px;
    margin-bottom: 12px;
    display: block;
}

.testimonials-v2-title {
    font-size: 3.2rem;
    margin: 0 0 16px;
    color: #0b0d12;
    font-weight: 600;
}

.testimonials-sub {
    margin: 0;
    color: rgba(11,13,18,0.7);
    font-size: 16px;
    max-width: 480px;
    margin: 0 auto;
}

.testimonials-v2-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    position: relative;
    z-index: 2;
}

.testimonial-v2 {
    background: #ffffff;
    border: 1px solid rgba(11,13,18,0.08);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(11,13,18,0.08);
}

.testimonial-featured {
    border-color: #0b0d12;
    background: linear-gradient(135deg, #0b0d12 0%, #1a1d23 100%);
    color: #ffffff;
}

.testimonial-featured .quote-text {
    color: rgba(255,255,255,0.95);
}

.testimonial-featured .author-name {
    color: #ffffff;
}

.testimonial-featured .author-title,
.testimonial-featured .author-company {
    color: rgba(255,255,255,0.8);
}

.quote-mark {
    font-size: 48px;
    color: rgba(11,13,18,0.15);
    line-height: 1;
    margin-bottom: 16px;
    font-family: serif;
}

.testimonial-featured .quote-mark {
    color: rgba(255,255,255,0.3);
}

.quote-text {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 24px;
    color: rgba(11,13,18,0.9);
    font-style: italic;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f0f2f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #0b0d12;
    font-size: 18px;
}

.testimonial-featured .author-avatar {
    background: rgba(255,255,255,0.15);
    color: #ffffff;
}

.author-name {
    font-weight: 600;
    color: #0b0d12;
    margin-bottom: 2px;
}

.author-title {
    font-size: 14px;
    color: rgba(11,13,18,0.7);
    margin-bottom: 2px;
}

.author-company {
    font-size: 13px;
    color: rgba(11,13,18,0.6);
}

/* CTA V2 - Light & Modern */
.cta-v2 {
    margin: 120px auto 160px;
    padding: 0 40px;
}

.cta-v2-container {
    background: linear-gradient(135deg, #f8f9fb 0%, #f0f2f5 100%);
    border: 1px solid rgba(11,13,18,0.06);
    border-radius: 20px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.cta-v2-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.cta-v2-text {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-icon {
    font-size: 48px;
    opacity: 0.8;
}

.cta-v2-title {
    font-size: 2.2rem;
    margin: 0 0 8px;
    color: #0b0d12;
    font-weight: 600;
}

.cta-v2-sub {
    margin: 0;
    color: rgba(11,13,18,0.7);
    font-size: 16px;
}

.cta-v2-action {
    text-align: center;
}

.cta-v2-btn {
    background: #0b0d12;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-v2-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(11,13,18,0.2);
}

.cta-note {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: rgba(11,13,18,0.5);
}

.cta-v2-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(11,13,18,0.03);
}

.circle-1 {
    width: 120px;
    height: 120px;
    top: 0;
    right: 0;
}

.circle-2 {
    width: 80px;
    height: 80px;
    top: 40px;
    right: 60px;
}

.circle-3 {
    width: 40px;
    height: 40px;
    top: 80px;
    right: 120px;
}

@media (max-width: 980px) {
    .testimonials-v2 { padding: 0 24px; }
    .testimonials-v2-inner { padding: 40px 32px; }
    .testimonials-v2-grid { grid-template-columns: 1fr; gap: 24px; }
    .testimonials-v2-title { font-size: 2.6rem; }
    
    .cta-v2 { padding: 0 24px; }
    .cta-v2-container { padding: 36px 28px; }
    .cta-v2-content { flex-direction: column; text-align: center; gap: 24px; }
    .cta-v2-text { flex-direction: column; gap: 12px; }
    .cta-v2-title { font-size: 1.8rem; }
}

@media (max-width: 640px) {
    .testimonials-v2 { padding: 0 16px; margin: 100px auto 120px; }
    .testimonials-v2-inner { padding: 32px 24px; }
    .testimonials-v2-title { font-size: 2.2rem; }
    
    .cta-v2 { padding: 0 16px; margin: 80px auto 120px; }
    .cta-v2-container { padding: 28px 20px; }
    .cta-v2-title { font-size: 1.6rem; }



    .partners-header {
        flex-direction: column;
        align-items: start;
    }
    .partners-title {
        font-size: 2.8rem;
    }

    .industries-header {
        align-items: start;
        grid-template-columns: 1fr;
        padding: 0;
    }
    .services-v2-header {
        flex-direction: column-reverse;
    }
    .services-v2-inner {
        padding: 40px 20px;
    }

    .hero::before {
        background: url(../img/bg.jpg) center / cover no-repeat;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero {
        margin: 0 auto;

        align-items: center;
        justify-content: center;
    }
    .container {
        width: 90%;
    }
}

