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

:root {
    --bg: #10182f;
    --bg-alt: #0d1326;
    --surface: rgba(255, 255, 255, 0.05);
    --surface-strong: rgba(255, 255, 255, 0.12);
    --border: rgba(255, 255, 255, 0.14);
    --text: #f8f9ff;
    --text-muted: #aab2d1;
    --accent: #f7a82c;
    --accent-soft: rgba(247, 168, 44, 0.15);
    --btn: #f9a41b;
    --btn-hover: #fbb347;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: radial-gradient(circle at bottom right, rgba(255, 160, 70, 0.08), transparent 26%),
        linear-gradient(180deg, #0b1220 0%, #0f1b38 100%);
    color: var(--text);
    min-height: 100vh;
}

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

img {
    max-width: 100%;
    display: block;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(1440px, calc(100% - 180px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    width: 100%;
    background: rgba(7, 13, 28, 0.85);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
    background: rgba(7, 13, 28, 0.96);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
    border-color: rgba(255, 255, 255, 0.12);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
}

.brand {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.logo-mark {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.08em;
    color: var(--text);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}

.subline {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    color: var(--text);
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.mobile-toggle {
    display: none;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    padding: 0;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text);
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

body.nav-open .mobile-toggle span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

body.nav-open .mobile-toggle span:nth-child(2) {
    opacity: 0;
}

body.nav-open .mobile-toggle span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

@media (max-width: 900px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(7, 13, 28, 0.96);
        padding: 16px 20px 20px;
        box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    body.nav-open .main-nav {
        display: flex;
    }

    .main-nav a {
        display: block;
        width: 100%;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 1rem;
    }

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

    .mobile-toggle {
        display: flex;
    }

    .btn-primary {
        padding: 12px 18px;
    }

    .header-inner {
        flex-wrap: nowrap;
    }

    .challenge-grid {
        grid-template-columns: 1fr !important;
        grid-auto-flow: row;
    }

    .challenge-item {
        grid-template-columns: 52px 1fr;
        padding: 18px;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100%, calc(100% - 24px));
    }

    body {
        background-position: top center;
    }

    .header-inner {
        justify-content: space-between;
        padding: 16px 0;
    }

    .main-nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }

    .main-nav a {
        font-size: 0.92rem;
    }

    .hero {
        padding-top: 90px;
        padding-bottom: 56px;
    }

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

    .hero-form .card {
        padding: 24px;
    }

    .hero-form h2 {
        font-size: 1.7rem;
    }

    .hero-badges {
        flex-direction: column;
        gap: 10px;
    }

    .hero-badges img {
        max-width: 100%;
    }

    .challenge-section {
        padding: 56px 0;
    }

    .challenge-grid {
        grid-template-columns: 1fr !important;
        grid-auto-flow: row;
    }

    .challenge-item {
        grid-template-columns: 52px 1fr;
        padding: 18px;
    }

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

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

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

    .support-visual {
        justify-content: center;
    }

    .btn-secondary {
        width: 100%;
    }

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

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

    .process-header h2 {
        font-size: 1.6rem;
    }

    .process-card {
        padding: 24px;
    }
}

@media (max-width: 980px) {
    .support-grid {
        grid-template-columns: 1fr;
    }

    .support-copy {
        text-align: center;
        max-width: 100%;
    }

    .support-visual {
        justify-content: center;
    }

    .support-copy h3 {
        font-size: clamp(1.4rem, 3.5vw, 2rem);
    }

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

@media (max-width: 720px) {
    .support-section {
        padding: 42px 0;
    }

    .support-grid {
        display: block !important;
    }

    .support-copy {
        max-width: 100%;
        text-align: center;
    }

    .support-copy h3 {
        font-size: clamp(1.3rem, 2.8vw, 1.8rem);
        margin-bottom: 18px;
    }

    .support-text {
        max-width: 100%;
        margin-bottom: 24px;
        font-size: 0.95rem;
    }

    .support-visual {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .support-illustration-img {
        width: 100%;
        max-width: 100%;
        max-height: 280px;
    }

    .btn-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%;
    }
}

.main-nav a:hover {
    color: var(--accent);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--btn);
    color: #0d1326;
    border-radius: 999px;
    padding: 14px 24px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    background: var(--btn-hover);
}

.hero {
    padding-top: 110px;
    padding-bottom: 80px;
}

/* Case Study Carousel */
.case-study-section {
    padding: 48px 0;
    background: #fff;
    color: #111827;
}
.case-study-section .section-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #0f1724;
}
.case-carousel {
    display: flex;
    gap: 20px;
    overflow: hidden;
    scroll-snap-type: x mandatory;
}
.case-card {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: #fff;
    align-items: center;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(16,24,40,0.06);
    scroll-snap-align: start;
}
.case-card .case-image {
    position: relative;
}
.case-card .case-image .tag {
    display: inline-block;
    background: #f3f4f6;
    color: #111827;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    margin-bottom: 12px;
}
.case-card .case-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}
.case-card .case-content {
    padding: 8px 6px;
}
.case-card .branding {
    font-weight: 700;
    color: #6b7280;
    margin-bottom: 8px;
}
.case-card h3 {
    margin: 6px 0 12px;
    color: #0f1724;
}
.case-desc {
    color: #374151;
    margin-bottom: 14px;
}
.info-table .row {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}

.case-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
    align-items: center;
    flex-wrap: wrap;
}
.case-stats .stat {
    width: 175px;
    padding: 5px;
    border-radius: 11px;
    border: 1px solid #cbb02c54;
    text-align: center;
    min-width: 170px;
    text-align: center;
    min-width: 110px;
}
.case-stats .stat strong {
    display: block;
    font-size: 1.25rem;
    color: #0f1724;
    font-weight: 800;
}
.case-stats .stat span {
    display: block;
    margin-top: 6px;
    color: #6b7280;
    font-size: 0.9rem;
}
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}
.carousel-btn {
    background: #0f1724;
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 6px;
    cursor: pointer;
}
.carousel-dots {
    display: flex;
    gap: 8px;
}
.carousel-dots button {
    width: 10px;
    height: 10px;
    background: #d1d5db;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}
.carousel-dots button.active {
    background: #0f1724;
}

@media (max-width: 900px) {
    .case-card { grid-template-columns: 1fr; }
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, 1fr);
    gap: 40px;
    align-items: start;
}

.hero-copy h1 {
    font-size: 66px;
    padding-top: 20px;
    line-height: 0.95;
    letter-spacing: -0.05em;
    margin-bottom: 18px;
}

@media (max-width: 767px) {
    .hero-copy h1 {
        font-size: 60px;
        padding-top: 80px;
        line-height: 1;
        letter-spacing: -0.05em;
        margin-bottom: 18px;
    }
}


.hero-copy h1 span {
    color: #f9a41b
}

.hero-copy h3 {
    font-size: 1.20rem;
    line-height: 0.95;

    margin-bottom: 18px;

}

.hero-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-badges img {
    background-color: #0f1434;
    padding: 10px;
    width: auto;
    max-width: 161px;
    border-radius: 7px;
    display: block;
    height: 58px;
}

.hero-copy p.hero-subtitle {
    max-width: 760px;
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.logo-image {
    max-height: 48px;
    width: auto;
    display: block;
}

.feature-list {
    list-style: none;
    display: grid;
    gap: 14px;
    padding-left: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.98rem;
}

.feature-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
}

.hero-form .card {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 24px;
    padding: 34px;
    box-shadow: var(--shadow);
}

.hero-form h2 {
    font-size: 1.85rem;
    margin-bottom: 10px;
    color: #111827;
}

.hero-form p {
    margin-bottom: 28px;
    color: #4b5563;
    line-height: 1.8;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
    width: 100%;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 14px;
    background: #fff;
    padding: 16px 18px;
    color: #111827;
}

.form-grid textarea {
    grid-column: 1 / -1;
    min-height: 120px;
    resize: vertical;
}

.form-grid select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #6b7280 50%), linear-gradient(135deg, #6b7280 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(1em + 2px), calc(100% - 13px) calc(1em + 2px);
    background-size: 8px 8px, 8px 8px;
    background-repeat: no-repeat;
}

.hero-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 8px;
    padding: 16px 22px;
    background: #f9a41b;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    color: #0d1326;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-form button:hover {
    background: #fbb347;
    transform: translateY(-1px);
}

.form-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: #475569;
    margin-top: 24px;
    font-size: 0.92rem;
}

.form-footer span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

footer {
    padding: 32px 0 52px;
    color: var(--text-muted);
    text-align: center;
}

footer a {
    color: inherit;
}

.trust-section {
    padding: 72px 0 56px;
    background: #ffffff;
    color: #111827;
}

.trusted-by {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    gap: 60px;
    margin-bottom: 38px;
}

.trusted-label {
    color: #f9a41b;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.trusted-logos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-end;
}

.trusted-logos img {
    max-height: 42px;
    opacity: 0.85;
    filter: brightness(1.1);
}
.logo-marquee {
  overflow: hidden;
  background: #fff;
  padding: 20px 0;
}

.logo-track {
  display: flex;
  gap: 50px;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.logo-track img {
  object-fit: contain;
  max-width: 140px;
    height: 50px;
    object-fit: contain;
    transition: all 0.3s ease;
    cursor: pointer;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

.enterprise {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 1fr);
    gap: 28px;
    align-items: center;
}

.enterprise-copy {
    max-width: 680px;
}

.enterprise-title {
    font-size: 1.95rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.enterprise-text {
    color: #6b7280;
    line-height: 1.9;
    max-width: 680px;
}

.enterprise-icons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.enterprise-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.enterprise-card img {
    width: 58px;
    height: auto;
}

.enterprise-card span {
    color: #111827;
    font-weight: 700;
}

.challenge-section {
    padding: 72px 0;
    background: #ffffff;
    color: #111827;
}

.challenge-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.challenge-copy {
    max-width: 620px;
}

.challenge-label {
    display: inline-block;
    text-transform: uppercase;
    /* letter-spacing: 0.24em; */
    color: #f9a41b;
    font-weight: 700;
    margin-bottom: 14px;
}

.challenge-copy h2 {
    font-size: clamp(2.2rem, 2.6vw, 3rem);
    line-height: 1.05;
    margin-bottom: 20px;
    color: #111827;
}

.challenge-copy h3 {
    font-size: 38px;
    line-height: 1.05;
    margin-bottom: 20px;
    color: #111827;
}

.challenge-text {
    color: #6b7280;
    line-height: 1.9;
    max-width: 580px;
    padding-top: 20px;
}

.challenge-list {
    display: grid;
    gap: 18px;
}

.challenge-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 22px 22px 22px 18px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    border-radius: 24px;
}

.challenge-item img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.challenge-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #111827;
}

.challenge-item p {
    color: #6b7280;
    line-height: 1.8;
    font-size: 0.98rem;
}

.service-head {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 42px;
}

.service-label {
    display: inline-block;
   
    /* letter-spacing: 0.24em; */
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 14px;
    font-size: 46px;
}

.service-copy {
    color: #6b7280;
    line-height: 1.95;
    margin: 0 auto;
    max-width: 760px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.service-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 32px 26px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 260px;
}

.service-card img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.service-card h4 {
    color: #111827;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.service-card p {
    color: #6b7280;
    line-height: 1.8;
    font-size: 0.97rem;
}

.support-section {
    padding: 42px 0;
    background: linear-gradient(135deg, #0f3b94 0%, #073391 100%);
    color: #ffffff;
}

.support-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 1fr);
    gap: 36px;
    align-items: center;
}

.support-label {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: #8bc6ff;
    font-weight: 700;
    margin-bottom: 18px;
}

.support-copy h3 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 600;
}

.support-copy {
    max-width: 600px;
}

.support-text {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.9;
    max-width: 560px;
    margin-bottom: 32px;
    font-size: 1rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    color: #ffffff;
    background: transparent;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.support-visual {
    display: flex;
    justify-content: flex-end;
}

.support-illustration-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 28px;
    display: block;
}

.process-section {
    padding: 72px 0;
    background: #f3f4f6;
    color: #111827;
}

.process-header {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 56px;
}

.process-label {
    display: inline-block;
    background: rgba(249, 164, 27, 0.15);
    color: #f9a41b;
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 600;
    /* font-size: 0.85rem; */
    margin-bottom: 20px;
}

.process-header h2 {
    /* font-size: clamp(2rem, 3vw, 3rem); */
    line-height: 1.1;
    margin-bottom: 18px;
    color: #f7a82c;
}

.process-description {
    color: #6b7280;
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.process-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.process-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f9a41b;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.process-card h4 {
    /* font-size: 1.05rem; */
    color: #111827;
    margin: 0;
}

.process-card p {
    color: #6b7280;
    font-size: 0.98rem;
    line-height: 1.7;
}

.testimonials-section {
    padding: 72px 0;
    background: #ffffff;
    color: #111827;
}

.testimonials-header {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 56px;
}

.testimonials-header h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.1;
    margin-bottom: 18px;
    color: #f7a82c;
}

.testimonials-highlight {
    color: #111827;
}

.testimonials-description {
    color: #6b7280;
    line-height: 1.8;
    max-width: 740px;
    margin: 0 auto;
}

.testimonials-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    width: 400%;
    border-radius: 20px;
    scroll-behavior: smooth;
}

.testimonial-slide {
    flex: 0 0 25%;
    min-width: 25%;
    transition: transform 0.5s ease-in-out;
}

.testimonial-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
    gap: 36px;
    align-items: center;
    background: #f9fafb;
    padding: 40px;
    border-radius: 20px;
}

.testimonial-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 280px;
}

.testimonial-image img {
    width: 500px;
    height: 400px;
    object-fit: cover;
    display: block;
}

.testimonial-play-btn {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(255, 99, 71, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
}

.testimonial-play-btn::after {
    content: "▶";
    color: #ffffff;
    font-size: 1rem;
    margin-left: 2px;
}

.testimonial-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-quote {
    color: #6b7280;
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

.testimonial-quote::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(249, 164, 27, 0.15);
    border-radius: 50%;
    margin-right: 12px;
    vertical-align: middle;
    line-height: 40px;
    text-align: center;
    font-size: 1.5rem;
    color: #f9a41b;
    margin-bottom: 12px;
    float: left;
}

.testimonial-author {
    font-weight: 700;
    color: #111827;
    margin: 0;
    font-size: 1.05rem;
}

.testimonial-title {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
}

.testimonials-nav {
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.testimonial-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #6b7280;
    transition: background 0.2s ease, color 0.2s ease;
}

.testimonial-nav-btn:hover {
    background: #f3f4f6;
    color: #111827;
}

@media (max-width: 980px) {
    .testimonial-content {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 32px;
    }

    .testimonials-nav {
        position: static;
        justify-content: center;
        margin-top: 24px;
    }
}

@media (max-width: 720px) {
    .testimonials-section {
        padding: 56px 0;
    }

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

    .testimonials-header h2 {
        font-size: 1.5rem;
    }

    .testimonial-content {
        padding: 24px;
        gap: 20px;
    }

    .testimonial-image {
        min-height: 240px;
    }

    .testimonial-quote {
        font-size: 0.95rem;
    }

    .testimonials-nav {
        gap: 8px;
    }

    .testimonial-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

.faq-section {
    padding: 72px 0;
    background: #ffffff;
    color: #111827;
}

.faq-header {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 56px;
}

.faq-header h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.1;
    margin-bottom: 18px;
    color: #f7a82c;
}

.faq-description {
    color: #6b7280;
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto;
}

.faq-container {
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: #111827;
    text-align: left;
    transition: background 0.2s ease, color 0.2s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-item.faq-active .faq-question {
    background: #f3f4f6;
    color: #f9a41b;
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #6b7280;
}

.faq-item.faq-active .faq-icon {
    transform: rotate(180deg);
    color: #f9a41b;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #ffffff;
}

.faq-item.faq-active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px 20px;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.8;
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 720px) {
    .faq-section {
        padding: 56px 0;
    }

    .faq-header {
        margin-bottom: 42px;
    }

    .faq-header h2 {
        font-size: 1.5rem;
    }

    .faq-question {
        padding: 16px;
        font-size: 0.95rem;
    }

    .faq-item.faq-active .faq-answer {
        padding: 0 16px 16px 16px;
    }

    .faq-icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 980px) {
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

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

    .process-header h2 {
        font-size: 1.6rem;
    }

    .process-card {
        padding: 24px;
    }
}

.trusted-by {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    gap: 18px;
    margin-bottom: 38px;
}

.trusted-label {
    color: #f9a41b;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 1rem;
}

.trusted-logos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-end;
}

.trusted-logos img {
    max-height: 60px;
    opacity: 0.85;
    filter: brightness(1.1);
}

.enterprise {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 1fr);
    gap: 28px;
    align-items: center;
}

.enterprise-copy {
    max-width: 680px;
}

.enterprise-title {
    font-size: 1.95rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.enterprise-text {
    color: #6b7280;
    line-height: 1.9;
    max-width: 680px;
}

.enterprise-icons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.enterprise-card {
    background: #111827;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding:  15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.enterprise-card img {
    width: 150px;
    height: auto;
}

.enterprise-card span {
    color: #111827;
    font-weight: 700;
}

@media (max-width: 980px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .trusted-by {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

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

    .trusted-logos {
        justify-content: center;
    }

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

@media (max-width: 720px) {
    .container {
        width: min(100%, calc(100% - 24px));
    }

    body {
        background-position: top center;
    }

    .header-inner {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 16px 0;
    }

    .main-nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }

    .main-nav a {
        font-size: 0.92rem;
    }

    .hero {
        padding-top: 90px;
        padding-bottom: 56px;
    }

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

    .hero-form .card {
        padding: 24px;
    }

    .hero-form h2 {
        font-size: 1.7rem;
    }

    .hero-badges {
        flex-direction: column;
        gap: 12px;
    }

    .hero-badges img {
        max-width: 100%;
    }
}

/* Book a Fit Call Section */
.book-fit-call-section {
    padding: 56px 0;
    background: #ffffff;
}

.book-fit-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: stretch;
}

.book-left {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 48px;
    border-radius: 16px;
    color: #ffffff;
}

.book-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.book-header h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin: 0;
}

.book-email-link {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.book-email-link:hover {
    background: rgba(255, 255, 255, 0.3);
}

.book-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.9);
}

.book-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 42px;
}

.book-stat-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.book-stat-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.book-stat-text h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    font-weight: 700;
}

.book-stat-text p {
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.6;
}

.book-logos {
    display: flex;
    gap: 16px;
    align-items: center;
}

.book-logos img {
    height: 40px;
    opacity: 0.9;
    filter: brightness(1.2);
}

.book-right {
    padding: 48px;
    background: #f9f9f9;
    border-radius: 16px;
}

.book-right h3 {
    font-size: 2rem;
    color: #111827;
    margin-bottom: 8px;
    line-height: 1.2;
}

.book-form-subtitle {
    color: #6b7280;
    margin-bottom: 32px;
    font-size: 0.95rem;
}

.book-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #111827;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3c72;
    box-shadow: 0 0 0 3px rgba(30, 60, 114, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b4b9c1;
}

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

.phone-input {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 8px;
    align-items: stretch;
}

.phone-input select {
    padding: 12px 10px;
}

.file-upload {
    position: relative;
}

.file-upload input {
    display: none;
}

.file-upload label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.file-upload label:hover {
    border-color: #1e3c72;
    background: rgba(30, 60, 114, 0.02);
}

.btn-enquire {
    padding: 14px 32px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-enquire:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 60, 114, 0.3);
}

/* Tablet Responsiveness */
@media (max-width: 980px) {
    .book-fit-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .book-left,
    .book-right {
        padding: 36px;
    }

    .book-header h2 {
        font-size: 1.7rem;
    }

    .book-right h3 {
        font-size: 1.7rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 720px) {
    .book-fit-call-section {
        padding: 42px 0;
    }

    .book-fit-container {
        padding: 0 16px;
        gap: 20px;
    }

    .book-left {
        padding: 24px;
        order: 2;
    }

    .book-right {
        padding: 24px;
        order: 1;
    }

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

    .book-header {
        margin-bottom: 10px;
    }

    .book-email-link {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .book-subtitle {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .book-stats {
        gap: 20px;
        margin-bottom: 32px;
    }

    .book-stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .book-stat-text h4 {
        font-size: 0.95rem;
    }

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

    .book-logos {
        gap: 12px;
    }

    .book-logos img {
        height: 32px;
    }

    .book-right h3 {
        font-size: 1.4rem;
    }

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

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

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .file-upload label {
        padding: 20px;
        font-size: 0.75rem;
    }

    .btn-enquire {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .phone-input {
        grid-template-columns: 70px 1fr;
        gap: 6px;
    }
}

.stats-section {
      /* background: #1a2151; */
      display: flex;
      justify-content: center;
      align-items: center;
      /* gap: clamp(20px, 6vw, 80px); */
      gap: 10px;
      padding: clamp(20px, 8vw, 80px) clamp(40px, 5vw, 60px);
      border-radius: 16px;
      flex-wrap: wrap;
    }

    .badge-wrapper {
        display: flex;
      position: relative;
      width: clamp(160px, 20vw, 130px);
      height: clamp(160px, 20vw, 130px);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      will-change: transform;
    }

    .badge-wrapper:hover {
      transform: scale(1.07);
    }

    .circular-text-svg {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      opacity: 0.35;
      transition: opacity 0.3s ease;
      will-change: transform, opacity;
    }

    .badge-wrapper:hover .circular-text-svg {
      opacity: 0.55;
      animation-play-state: paused;
    }

    .badge-center {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 2;
      transition: transform 0.3s ease;
      will-change: transform;
    }

    .badge-wrapper:hover .badge-center {
      transform: scale(1.05);
    }

    .badge-number {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-size: clamp(2rem, 5vw, 2.0rem);
      font-weight: 700;
      color: #ffffff;
      line-height: 1;
      letter-spacing: -0.02em;
    }

    .badge-label {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-size: clamp(0.7rem, 1.5vw, 0.85rem);
      color: #c8cfe8;
      text-align: center;
      margin-top: 6px;
      font-weight: 400;
      letter-spacing: 0.01em;
    }

    .spin-cw {
      animation: spinCW 18s linear infinite;
      transform-origin: 50% 50%;
    }

    .spin-ccw {
      animation: spinCCW 18s linear infinite;
      transform-origin: 50% 50%;
    }

    @keyframes spinCW {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }

    @keyframes spinCCW {
      from { transform: rotate(0deg); }
      to   { transform: rotate(-360deg); }
    }

.case-study-section{
    background-image:url(../image/case-study-bg.png);
    padding:70px 20px;
}

.case-study-card{
    max-width:1100px;
    margin:auto;
    background:#fff;
    display:grid;
    grid-template-columns:1fr 1fr;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.12);
}

.case-image{
    position:relative;
    background:#000;
}

.case-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.6s ease;
}

.tag{
    position:absolute;
    top:20px;
    left:20px;
    background:#ff5b2e;
    color:#fff;
    font-size:11px;
    padding:8px 12px;
    z-index:2;
}

.case-number{
    position:absolute;
    bottom:20px;
    right:20px;
    color:#fff;
    font-size:80px;
    font-weight:700;
    opacity:.2;
}

.case-content{
    padding:25px 60px;
}

.case-id{
    color:#999;
    font-size:12px;
}

.branding{
    font-size:11px;
    letter-spacing:1px;
    color:#888;
    margin:10px 0 20px;
}

.case-content h2{
    color:#111;
    font-size:30px;
    margin-bottom:20px;
    line-height:1.1;
}

.description{
    color:#666;
    line-height:1.7;
    margin-bottom:40px;
}

.info-table{
    margin-bottom:20px;
}
.info-content{
    color:#111;
    margin-left:40px;
}

.row{
    display:flex;
    justify-content:space-between;
    padding:15px 0;
    border-bottom:1px solid #eee;
}

.row span:first-child{
    color:#888;
    font-size:13px;
}

.stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    border:1px solid #eee;
    margin-bottom:30px;
}

.stats div{
    padding:2px;
    text-align:center;
}

.stats strong{
    display:block;
    color:#ff5b2e;
    font-size:25px;
}

.stats span{
    font-size:13px;
    color:#777;
}

.view-btn{
    width:100%;
    border:none;
    background:#111;
    color:#fff;
    padding:18px;
    cursor:pointer;
    font-weight:600;
}

.controls{
    display:flex;
    gap:10px;
    margin-top:20px;
}

.controls button{
    width:45px;
    height:45px;
    border:none;
    background:#111;
    color:#fff;
    cursor:pointer;
}

.fade{
    opacity:0;
}

@media(max-width:768px){

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

    .case-content{
        padding:30px;
    }

    .case-content h2{
        font-size:32px;
    }

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


.locations {
      position: relative;
      z-index: 1;
      max-width: 1140px;
      width: 100%;
      margin: 0 auto;
      padding: 60px 20px;
    }

    /* ── Header ── */
    .header-loc {
      text-align: center;
      margin-bottom: 64px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 20px;
    }
    .eyebrow::before,
    .eyebrow::after {
      content: '';
      width: 28px;
      height: 1.5px;
      background: var(--accent);
      opacity: 0.55;
    }

    h1 {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(2.2rem, 5vw, 3.6rem);
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.1;
      letter-spacing: -0.03em;
      margin-bottom: 18px;
    }
    h1 em {
      font-style: italic;
      font-weight: 600;
      color: var(--accent);
      -webkit-text-fill-color: var(--accent);
    }

    .subtitle {
      font-size: 0.95rem;
      color: var(--text-soft);
      max-width: 460px;
      margin: 0 auto;
      line-height: 1.8;
      font-weight: 300;
    }

    /* ── Grid ── */
    .grid-loc {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    /* ── Card ── */
    .card-loc {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 40px 36px 44px;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow:
        0 2px 4px rgba(26,23,16,0.04),
        0 8px 24px rgba(26,23,16,0.07);
      position: relative;
      overflow: hidden;
      transition: transform 0.38s cubic-bezier(0.34,1.5,0.64,1),
                  box-shadow 0.38s ease;
      cursor: default;
    }

    .card-loc::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent), rgba(245,166,35,0.3));
      opacity: 0;
      transition: opacity 0.3s ease;
      border-radius: 24px 24px 0 0;
    }

    .card-loc::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 45% at 50% 0%, rgba(245,166,35,0.05) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.4s ease;
      pointer-events: none;
    }

    .card-loc:hover {
      transform: translateY(-10px);
      box-shadow:
        0 4px 8px rgba(26,23,16,0.05),
        0 20px 48px rgba(26,23,16,0.10),
        0 0 0 1px rgba(245,166,35,0.18);
    }
    .card-loc:hover::before { opacity: 1; }
    .card-loc:hover::after  { opacity: 1; }
    .card-loc:hover .pin-icon { background: var(--accent); }
    .card-loc:hover .pin-icon svg { stroke: #fff; }
    .card-loc:hover .card-number { color: var(--accent); opacity: 0.10; }
    .card-loc:hover .divider { width: 56px; }

    /* Watermark number */
    .card-number {
      position: absolute;
      bottom: 24px; right: 30px;
      font-family: 'Montserrat', sans-serif;
      font-size: 5rem;
      font-weight: 700;
      color: var(--text-dark);
      opacity: 0.05;
      line-height: 1;
      letter-spacing: -0.04em;
      transition: color 0.3s, opacity 0.3s;
      user-select: none;
    }

    /* Pin icon */
    .pin-icon {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      background: var(--accent-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 28px;
      transition: background 0.35s ease;
    }
    .pin-icon svg {
      width: 20px;
      height: 20px;
      stroke: var(--accent);
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: stroke 0.35s ease;
    }

    /* City & country */
    .card-city {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.1;
      letter-spacing: -0.025em;
      margin-bottom: 5px;
    }
    .card-country {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 24px;
    }

    /* Divider */
    .divider {
      width: 32px;
      height: 2px;
      background: var(--accent);
      border-radius: 2px;
      margin-bottom: 22px;
      opacity: 0.6;
      transition: width 0.35s ease;
    }

    /* Address */
    .card-address {
      font-size: 0.875rem;
      color: var(--text-mid);
      line-height: 1.9;
      font-weight: 300;
    }
    .card-address span { display: block; }

    /* Responsive */
    @media (max-width: 900px) {
      .grid { grid-template-columns: 1fr 1fr; }
      .card:nth-child(3) { grid-column: 1 / -1; max-width: 420px; margin: 0 auto; width: 100%; }
    }
    @media (max-width: 560px) {
      .grid { grid-template-columns: 1fr; }
      .card:nth-child(3) { grid-column: auto; max-width: none; }
      .header { margin-bottom: 44px; }
    }

    /* Entrance */
    .header        { animation: fadeUp 0.65s 0.05s ease both; }
    .card:nth-child(1) { animation: fadeUp 0.65s 0.18s ease both; }
    .card:nth-child(2) { animation: fadeUp 0.65s 0.30s ease both; }
    .card:nth-child(3) { animation: fadeUp 0.65s 0.42s ease both; }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(26px); }
      to   { opacity: 1; transform: translateY(0); }
    }

     /* ── Strip ── */
    .strip {
      background: #111a45;
      border-radius: 20px;
      width: 100%;
      max-width: none;
      display: grid;
      grid-template-columns: 60% 40%;
      align-items: center;
      gap: 32px;
      padding: 48px 56px;
      position: relative;
      overflow: hidden;
    }


    /* subtle glow top-left */
    .strip::before {
      content: '';
      position: absolute;
      top: -60px; left: -60px;
      width: 320px; height: 320px;
      background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    /* subtle glow bottom-right */
    .strip::after {
      content: '';
      position: absolute;
      bottom: -80px; right: 200px;
      width: 280px; height: 280px;
      background: radial-gradient(circle, rgba(245,166,35,0.05) 0%, transparent 70%);
      pointer-events: none;
    }


    /* ── Left: text + CTA ── */
    .left {
      display: flex;
      flex-direction: column;
      gap: 14px;
      position: relative;
      z-index: 1;
    }


    .eyebrow {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #f5a623;
    }
    .eyebrow .dot {
      width: 18px; height: 18px;
      border-radius: 50%;
      background: rgba(245,166,35,0.15);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .eyebrow .dot::after {
      content: '▶';
      font-size: 0.45rem;
      color: #f5a623;
    }


    .cta-right-2 {
      font-size: clamp(1.45rem, 2.6vw, 2.86rem);
      font-weight: 800;
      /* color: #ffffff; */
      line-height: 1.2;
      letter-spacing: -0.025em;
    }
    .cta-right-2 span { color: #f5a623; }


    .desc {
      font-size: 1.0rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.8;
      font-weight: 300;
      max-width: 520px;
    }


    .cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: #f5a623;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      padding: 14px 26px;
      border-radius: 100px;
      border: 2px solid #f5a623;
      cursor: pointer;
      text-decoration: none;
      margin-top: 4px;
      width: fit-content;
      transition: background 0.25s, color 0.25s, transform 0.25s cubic-bezier(0.34,1.5,0.64,1), box-shadow 0.25s;
    }
    .cta-btn:hover {
      background: #f5a623;
      color: #1a1710;
      transform: translateY(-2px) scale(1.03);
      box-shadow: 0 8px 28px rgba(245,166,35,0.40);
    }
    .cta-btn .arrow {
      width: 26px; height: 26px;
      border-radius: 50%;
      background: rgba(245,166,35,0.15);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.75rem;
      transition: transform 0.25s, background 0.25s;
    }
    .cta-btn:hover .arrow {
      transform: translateX(3px);
      background: rgba(26,23,16,0.15);
    }


    /* ── Right: stats badges ── */
    .stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      position: relative;
      z-index: 1;
      flex-shrink: 0;
      border: 0px;
    }


    .badge-wrap {
      position: relative;
      width: 130px;
      height: 130px;
      display: flex;
      align-items: center;
      justify-content: center;
    }


    .badge-svg {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      opacity: 0.3;
      transition: opacity 0.3s;
      will-change: transform;
    }
    .badge-wrap:hover .badge-svg { opacity: 0.55; animation-play-state: paused; }


    .badge-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 2;
      transition: transform 0.3s ease;
    }
    .badge-wrap:hover .badge-inner { transform: scale(1.06); }


    .badge-num {
      font-size: clamp(1.2rem, 2.2vw, 1.5rem);
      font-weight: 800;
      color: #ffffff;
      line-height: 1;
      letter-spacing: -0.025em;
    }
    .badge-num .star { color: #f5a623; font-size: 0.85em; }


    .badge-label {
      font-size: 0.6rem;
      font-weight: 500;
      color: rgba(255,255,255,0.5);
      text-align: center;
      margin-top: 5px;
      letter-spacing: 0.04em;
      line-height: 1.4;
    }


    .spin-cw  { animation: spinCW  22s linear infinite; transform-origin: 50% 50%; }
    .spin-ccw { animation: spinCCW 22s linear infinite; transform-origin: 50% 50%; }
    @keyframes spinCW  { to { transform: rotate(360deg);  } }
    @keyframes spinCCW { to { transform: rotate(-360deg); } }


    /* ── Responsive ── */
    @media (max-width: 960px) {
      .strip {
        grid-template-columns: 1fr;
        padding: 40px 36px;
        gap: 40px;
      }
      .stats {
        grid-template-columns: repeat(4, 1fr);
        width: 100%;
        justify-items: center;
      }
      .badge-wrap { width: 110px; height: 110px; }
    }


    @media (max-width: 640px) {
      .strip { padding: 36px 24px; border-radius: 16px; }
      .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }
      .badge-wrap { width: 120px; height: 120px; }
    }


    @media (max-width: 360px) {
      .badge-wrap { width: 100px; height: 100px; }
      .badge-num  { font-size: 1.1rem; }
    }

     .process-section {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: none;
      padding: 72px 24px;
    }

    /* ── Header ── */
    .header-process-section {
      text-align: center;
      margin-bottom: 64px;
      animation: fadeUp 0.65s 0.05s ease both;
    }

    .badge {
      display: inline-block;
      background: var(--accent-soft);
      border: 1px solid var(--accent-mid);
      color: var(--accent);
      font-size: 0.67rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 100px;
      margin-bottom: 18px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.67rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 18px;
    }
    .eyebrow::before, .eyebrow::after {
      content: '';
      width: 28px; height: 1.5px;
      background: var(--accent);
      opacity: 0.55;
    }

    .h2-process {
      font-size: clamp(1.75rem, 3.8vw, 2.89rem);
      font-weight: 800;
      color: var(--text-dark);
      line-height: 1.13;
      letter-spacing: -0.03em;
      margin-bottom: 16px;
      max-width: 780px;
      margin-left: auto;
      margin-right: auto;
    }
    .h2-process em {
      font-style: italic;
      font-weight: 700;
      color: var(--accent);
    }

    .subtitle {
      font-size: 1rem;
      color: var(--text-soft);
      max-width: 520px;
      margin: 0 auto;
      line-height: 1.85;
      font-weight: 300;
    }

    /* ── Horizontal timeline wrapper ── */
    .timeline {
      position: relative;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      align-items: start;
    }

    /* horizontal connector line through all nodes */
    .timeline::before {
      content: '';
      position: absolute;
      top: 27px; /* centre of the 56px node = 28px, adjust for border */
      left: calc(12.5% );   /* starts at centre of first node */
      right: calc(12.5% );  /* ends at centre of last node */
      height: 2px;
      background: linear-gradient(90deg,
        var(--accent) 0%,
        rgba(245,166,35,0.4) 60%,
        rgba(245,166,35,0.1) 100%);
      z-index: 0;
    }

    /* ── Single step ── */
    .step {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 0 12px;
      position: relative;
      z-index: 1;
      animation: fadeUp 0.6s ease both;
    }
    .step:nth-child(1) { animation-delay: 0.15s; }
    .step:nth-child(2) { animation-delay: 0.27s; }
    .step:nth-child(3) { animation-delay: 0.39s; }
    .step:nth-child(4) { animation-delay: 0.51s; }

    /* Number node */
    .step-num {
      width: 56px; height: 56px;
      border-radius: 16px;
      background: #fff;
      border: 2px solid var(--accent-mid);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 4px 16px rgba(245,166,35,0.12);
      transition: background 0.35s, border-color 0.35s, box-shadow 0.35s,
                  transform 0.35s cubic-bezier(0.34,1.5,0.64,1);
      position: relative;
      z-index: 2;
      margin-bottom: 28px;
    }
    .step-num span {
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.06em;
      color: var(--accent);
      transition: color 0.3s;
    }

    /* Card */
    .step-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 28px 24px 32px;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow:
        0 2px 4px rgba(26,23,16,0.04),
        0 8px 24px rgba(26,23,16,0.07);
      position: relative;
      overflow: hidden;
      width: 100%;
      transition: transform 0.38s cubic-bezier(0.34,1.5,0.64,1),
                  box-shadow 0.38s ease;
    }

    .step-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent), rgba(245,166,35,0.2));
      opacity: 0;
      border-radius: 20px 20px 0 0;
      transition: opacity 0.3s;
    }

    .step-card::after {
      content: attr(data-num);
      position: absolute;
      bottom: -8px; right: 16px;
      font-size: 4.5rem;
      font-weight: 800;
      color: var(--text-dark);
      opacity: 0.04;
      line-height: 1;
      letter-spacing: -0.05em;
      pointer-events: none;
      transition: opacity 0.35s, color 0.35s;
    }

    /* Hover */
    .step:hover .step-num {
      background: var(--accent);
      border-color: var(--accent);
      box-shadow: 0 6px 24px rgba(245,166,35,0.38);
      transform: scale(1.1) rotate(-5deg);
    }
    .step:hover .step-num span { color: #fff; }
    .step:hover .step-card {
      transform: translateY(-8px);
      box-shadow:
        0 4px 8px rgba(26,23,16,0.05),
        0 20px 44px rgba(26,23,16,0.10),
        0 0 0 1px rgba(245,166,35,0.18);
    }
    .step:hover .step-card::before { opacity: 1; }
    .step:hover .step-card::after  { opacity: 0.07; color: var(--accent); }
    .step:hover .divider           { width: 44px; }

    .step-tag {
      display: inline-block;
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--accent);
      background: var(--accent-soft);
      border-radius: 100px;
      padding: 3px 9px;
      margin-bottom: 10px;
    }

    .step-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.4;
      letter-spacing: -0.015em;
      margin-bottom: 12px;
    }

    .divider {
      width: 24px; height: 2px;
      background: var(--accent);
      border-radius: 2px;
      margin-bottom: 12px;
      opacity: 0.6;
      transition: width 0.35s ease;
    }

    .step-desc {
      font-size: 1rem;
      color: var(--text-mid);
      line-height: 1.85;
      font-weight: 300;
    }

    /* ── Responsive ── */

    /* Tablet: 2×2 grid */
    @media (max-width: 900px) {
      .timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
      }
      .timeline::before {
        /* top row horizontal line */
        top: 27px;
        left: calc(25%);
        right: calc(25%);
        width: calc(50%);
      }
      /* hide the global pseudo line and use per-row lines via JS-free trick */
      .timeline::before { display: none; }
    }

    /* Mobile: single column — revert to vertical timeline */
    @media (max-width: 560px) {
      .timeline {
        grid-template-columns: 1fr;
        gap: 0;
      }
      .timeline::before { display: none; }

      .step {
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
        padding: 0 0 36px;
        position: relative;
      }
      .step:last-child { padding-bottom: 0; }

      /* vertical line for mobile */
      .step:not(:last-child)::after {
        content: '';
        position: absolute;
        left: 27px;
        top: 56px;
        bottom: 0;
        width: 2px;
        background: linear-gradient(to bottom, var(--accent), rgba(245,166,35,0.1));
        z-index: 0;
      }

      .step-num {
        margin-bottom: 0;
        flex-shrink: 0;
        width: 54px; height: 54px;
      }

      .step-card {
        flex: 1;
      }
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }

.popupzoho-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.82);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow: auto;
    backdrop-filter: blur(8px);
}

.popupzoho-modal.active {
    display: flex;
}

.popupzoho-dialog {
    position: relative;
    width: 70%;
    max-height: calc(100vh - 120px);
    overflow: hidden;
    background: transparent;
}

.popupzoho-panel {
    width: 100%;
    max-height: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.popupzoho-header {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 28px 28px 18px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.popupzoho-eyebrow {
    margin: 0;
    color: #f59e0b;
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    font-weight: 700;
    text-transform: uppercase;
}

.popupzoho-header h2 {
    margin: 0;
    font-size: clamp(1.85rem, 2.2vw, 2.1rem);
    line-height: 1.05;
    color: #111827;
}

.popupzoho-copy-text {
    margin: 0;
    max-width: 520px;
    color: #475569;
    font-size: 1rem;
    line-height: 1.8;
}

.popupzoho-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 380px;
    background: transparent;
}

.popupzoho-form-wrapper {
        padding: 30px 28px 0px 28px;
    background: transparent;
}

.popupzoho-form-wrapper #crmWebToEntityForm.zcwf_lblLeft {
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
}

@media (max-width: 880px) {
    .popupzoho-body {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .popupzoho-copy,
    .popupzoho-form-wrapper {
        padding: 20px;
    }
}

.popupzoho-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #111827;
    color: #ffffff;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.24);
}

#popupzoho-modal #crmWebToEntityForm.zcwf_lblLeft {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    max-width: 100% !important;
}

#popupzoho-modal #crmWebToEntityForm .zcwf_col_fld input[type=text],
#popupzoho-modal #crmWebToEntityForm .zcwf_col_fld textarea,
#popupzoho-modal #crmWebToEntityForm .zcwf_col_fld_slt {
    background: #f8fafc !important;
    border: 1px solid #d1d5db !important;
    border-radius: 16px !important;
    padding: 14px 16px !important;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.08);
}

#popupzoho-modal #crmWebToEntityForm .zcwf_col_fld textarea {
    min-height: 100px !important;
}

#popupzoho-modal #crmWebToEntityForm .formsubmit,
#popupzoho-modal #crmWebToEntityForm .zcwf_button {
    background: #f59e0b !important;
    color: #111827 !important;
    border-radius: 14px !important;
    padding: 14px 26px !important;
    min-width: 250px;
}

#popupzoho-modal #crmWebToEntityForm .zcwf_row.two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    
}

#popupzoho-modal #crmWebToEntityForm .zcwf_col_lab,
#popupzoho-modal #crmWebToEntityForm .zcwf_col_help {
    display: none !important;
}

#popupzoho-modal #crmWebToEntityForm .button_sub {
    justify-content: center !important;
}
/* OVERLAY */
.popup-overlay{
  display:none;

  position:fixed;
  inset:0;

  background:rgba(0,0,0,0.65);

  justify-content:center;
  align-items:center;

  padding:20px;

  z-index:999999;
}

/* POPUP BOX */
.popup-box{
  width:100%;
  max-width:1100px;

  /* height:85vh; */

  background:#fff;

  display:flex;

  overflow:hidden;

  border-radius:14px;

  box-shadow:0 20px 50px rgba(0,0,0,0.25);

  position:relative;
}

/* LEFT SIDE */
.popup-left{
  width:45%;

  background: linear-gradient(45deg, #83d6e0, #f0e7a4);
  color:#444242;

  padding:70px 50px;

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items: center;
}

.popup-left h2{
    text-align: center;
  font-size:18px;
  line-height:1.8;
  margin-bottom:25px;
}

/* .popup-left p{
  font-size:18px;
  line-height:1.8;
  margin-bottom:30px;
} */

.popup-left ul{
  list-style:none;
}

.popup-left ul li{
  margin-bottom:14px;
  font-size:17px;
}

/* RIGHT SIDE */
.popup-right{
  width:55%;
  position:relative;
  background:#fff;
}

/* FORM URL */
.popup-right iframe{
  width:100%;
  height:100%;
  border:none;
  display:block;
}

/* CLOSE BUTTON */
.close-btn{
  position:absolute;

  top:15px;
  right:15px;

  width:42px;
  height:42px;

  border:none;
  border-radius:50%;

  background:#111;
  color:#fff;

  font-size:22px;
  cursor:pointer;

  z-index:999;
}

/* MOBILE */
@media(max-width:768px){

  .popup-box{
    flex-direction:column;
    height:95vh;
  }

  .popup-left{
    display: none;
  }
  .popup-right{
    width:100%;
  }

  .popup-left{
    padding:40px 25px;
  }

  .popup-left h2{
    font-size:34px;
  }

  .popup-right{
    min-height:500px;
  }

}

/* Contact page: override global dark background for this page */
.contact-page {
    background: #ffffff !important;
    color: #111827 !important;
}
.contact-page .contact-hero,
.contact-page .hero,
.contact-page main,
.contact-page .container {
    background: transparent !important;
}
.contact-page .contact-card,
.contact-page .hero .card,
.contact-page .contact-form {
    background: #ffffff !important;
}
