/* ── Kamerik 105 Font Family ── */
@font-face {
    font-family: 'Kamerik105';
    src: url('../font/Kamerik105-Thin.ttf') format('truetype'),
         url('../font/Kamerik105-Thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: 'Kamerik105';
    src: url('../font/Kamerik105-ThinOblique.ttf') format('truetype'),
         url('../font/Kamerik105-ThinOblique.otf') format('opentype');
    font-weight: 100;
    font-style: oblique;
}
@font-face {
    font-family: 'Kamerik105';
    src: url('../font/Kamerik105-Light.ttf') format('truetype'),
         url('../font/Kamerik105-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Kamerik105';
    src: url('../font/Kamerik105-LightOblique.ttf') format('truetype'),
         url('../font/Kamerik105-LightOblique.otf') format('opentype');
    font-weight: 300;
    font-style: oblique;
}
@font-face {
    font-family: 'Kamerik105';
    src: url('../font/Kamerik105-Book.ttf') format('truetype'),
         url('../font/Kamerik105-Book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Kamerik105';
    src: url('../font/Kamerik105-BookOblique.ttf') format('truetype'),
         url('../font/Kamerik105-BookOblique.otf') format('opentype');
    font-weight: 400;
    font-style: oblique;
}
@font-face {
    font-family: 'Kamerik105';
    src: url('../font/Kamerik105-Bold.ttf') format('truetype'),
         url('../font/Kamerik105-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Kamerik105';
    src: url('../font/Kamerik105-BoldOblique.ttf') format('truetype'),
         url('../font/Kamerik105-BoldOblique.otf') format('opentype');
    font-weight: 700;
    font-style: oblique;
}
@font-face {
    font-family: 'Kamerik105';
    src: url('../font/Kamerik105-Heavy.ttf') format('truetype'),
         url('../font/Kamerik105-Heavy.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: 'Kamerik105';
    src: url('../font/Kamerik105-HeavyOblique.ttf') format('truetype'),
         url('../font/Kamerik105-HeavyOblique.otf') format('opentype');
    font-weight: 900;
    font-style: oblique;
}

html {
    scroll-behavior: smooth;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Kamerik105', 'Segoe UI', sans-serif;
    color: #1a1a1a;
}

/* ── Header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.header-logo img {
    display: block;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: flex-end;
    min-width: 0;
}

.header-nav a {
    text-decoration: none;
    color: #333333;
    font-size: 15px;
    font-weight: 400;
    white-space: nowrap;
    transition: color 0.2s;
}

.header-nav a:hover {
    color: #3E7CCF;
}

/* "Get In Touch" button — gradient #0C1948 → #3E7CCF, stroke inside 2px */
.btn-get-in-touch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    color: #ffffff;
    white-space: nowrap;
    flex-shrink: 0;
    background: linear-gradient(135deg, #0C1948 0%, #3E7CCF 100%);
    /* inside stroke — use box-shadow to simulate 2px inside border */
    box-shadow: inset 0 0 0 2px rgba(62, 124, 207, 0.5);
    transition: opacity 0.2s;
}

.btn-get-in-touch:hover {
    opacity: 0.88;
}

/* ── Hamburger button ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: #1a1d24;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

/* X state when open */
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* mobile "Get In Touch" inside nav — hidden on desktop */
.btn-nav-mobile { display: none !important; }

/* ── Mobile nav ── */
/* hamburger visibility + nav dropdown — cascade-safe (comes before 1100px block) */
@media (max-width: 768px) {
    .btn-get-desktop { display: none; }
    .hamburger { display: flex; }

    .header-nav {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        width: 100%;
        background: #ffffff;
        border-bottom: 1px solid #e8e8e8;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 12px 24px 20px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        z-index: 99;
    }

    .header-nav.nav-open { display: flex; }

    .header-nav a {
        width: 100%;
        padding: 13px 0;
        border-bottom: 1px solid #f0f0f0;
        font-size: 15px;
    }

    .header-nav a:last-child { border-bottom: none; }

    .btn-nav-mobile {
        display: inline-flex !important;
        margin-top: 8px;
        width: 100%;
        justify-content: center;
    }
}

/* ── Hero Brand Section ── */
.hero-brand {
    background-color: #ffffff;
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.06) 1px, transparent 1px);
    background-size: 290px 150px;
    overflow: hidden;
}

.hero-brand-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 460px;
}

.hero-title {
    position: absolute;
    top: 50%;
    left: 24px;
    right: 24px;
    transform: translateY(-50%);
    font-family: 'Kamerik105', sans-serif;
    font-weight: 700;
    font-size: clamp(60px, 20vw, 240px);
    letter-spacing: -0.07em;
    line-height: 1;
    white-space: nowrap;
    margin: 0;
}

.text-dark {
    color: #404040;
}

.text-blue {
    background: linear-gradient(135deg, #0C1948 0%, #3E7CCF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Profile pins */
.pin {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.pin-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.pin-tag {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pin-cursor {
    width: 19px;
    height: 23px;
    object-fit: cover;
    object-position: top left;
    display: block;
    flex-shrink: 0;
}

.pin-name {
    background: #f5f5f5;
    border: 1px solid #d8d8d8;
    border-radius: 5px;
    padding: 5px 12px;
    font-size: 14px;
    font-weight: 400;
    color: #222222;
    white-space: nowrap;
}

/* Developer — over letter 'b' */
.pin-developer { left: 35%; top: 24%; z-index: 1; }

/* Strategist — over letter 'g' */
.pin-strategist { left: 70%; top: 26%; z-index: 1; }

/* Designer — over letter 'W' */
.pin-designer  { left: 8%;  top: 51%; }

/* Investor — over letter 'n' */
.pin-investor  { left: 48%; top: 61%; }

/* Manager — over letter 'X' */
.pin-manager   { left: 87%; top: 60%; }

/* ── Pin sequential bounce animation ── */
/* Cycle = 10s (5 pins × 2s). Each pin bounces in its own 2s window then idles */
@keyframes pin-bounce {
    0%   { transform: translateY(0); }
    3%   { transform: translateY(-14px); }
    6%   { transform: translateY(0); }
    8%   { transform: translateY(-7px); }
    10%  { transform: translateY(0); }
    100% { transform: translateY(0); }
}

.pin-developer  { animation: pin-bounce 10s ease-in-out infinite 0s; }
.pin-strategist { animation: pin-bounce 10s ease-in-out infinite 2s; }
.pin-designer   { animation: pin-bounce 10s ease-in-out infinite 4s; }
.pin-investor   { animation: pin-bounce 10s ease-in-out infinite 6s; }
.pin-manager    { animation: pin-bounce 10s ease-in-out infinite 8s; }

/* ── Footer ── */
.ai-transformation {
    background-color: #ffffff;
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.06) 1px, transparent 1px);
    background-size: 290px 150px;
    background-position: 0 -1px;
}

.ai-transformation-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 88px 24px 96px;
}

.ai-transformation-copy {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 72px;
    align-items: start;
}

.ai-transformation-title {
    font-family: 'Kamerik105', sans-serif;
    font-size: clamp(54px, 6.2vw, 74px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.06em;
    color: #4b4b4f;
    margin: 0;
    max-width: 620px;
}

.ai-text-blue {
    background: linear-gradient(135deg, #0C1948 0%, #3E7CCF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-transformation-lead {
    margin: 0 0 34px;
    /* max-width: 540px; */
    font-size: clamp(27px, 3vw, 21px);
    line-height: 1.25;
    letter-spacing: -0.03em;
    color: #2c2c31;
}

.ai-transformation-points {
    display: grid;
    gap: 28px;
    margin-bottom: 44px;
}

.ai-point {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    max-width: 560px;
}

.ai-point-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.6px solid #1d1d21;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    color: #111111;
    margin-top: 2px;
}

.ai-point p {
    margin: 0;
    font-size: clamp(21px, 2.25vw, 21px);
    line-height: 1.4;
    letter-spacing: -0.035em;
    color: #4a4a50;
}

.ai-story-btn {
    width: min(100%, 486px);
    min-height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 18px 16px 42px;
    border-radius: 10px;
    text-decoration: none;
    background: linear-gradient(90deg, #1b2f6f 0%, #407ccf 100%);
    box-shadow: 0 18px 40px rgba(24, 51, 117, 0.18);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.ai-story-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 44px rgba(24, 51, 117, 0.22);
}

.ai-story-btn span:first-child {
    font-size: clamp(24px, 1.15vw, 40px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.ai-story-btn-arrow {
    flex: 0 0 90px;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #ffffff;
    color: #17304d;
    font-size: 34px;
    line-height: 1;
}

/* ── Mobile pin grid (hidden on desktop) ── */
.mobile-pins-grid { display: none; }

.trust-badges {
    background-color: #ffffff;
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.06) 1px, transparent 1px);
    background-size: 290px 150px;
    background-position: 0 -1px;
    padding: 20px 0 100px;
    padding-bottom: 0;
}

.trust-badges-inner {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.trust-badges-shell {
    width: 100%;
    margin: 0;
    border-radius: 34px 34px 0 0;
    background: radial-gradient(circle at center, #2f7be5 0%, #204eaf 38%, #09116f 100%);
    padding: 44px 36px 0;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(12, 31, 111, 0.16);
}

.trust-badges-logos {
    overflow: hidden;
}

.trust-logos-track {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 52px;
    padding: 8px 34px 42px;
    width: 100%;
}

.trust-badge-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 112px;
    flex: 0 0 auto;
}

.trust-badge-logo img {
    display: block;
    max-width: 100%;
    width: auto;
    max-height: 126px;
    object-fit: contain;
}

.trust-badges-card {
    background: #ffffff;
    border-radius: 24px 24px 0 0;
    padding: 56px 46px 48px;
    min-height: 406px;
}

.trust-badges-title {
    margin: 0;
    max-width: 640px;
    font-family: 'Kamerik105', sans-serif;
    font-size: clamp(44px, 2.4vw, 68px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.055em;
    color: #9a9a9d;
}

.trust-badges-title span {
    display: block;
}

.trust-badges-title strong {
    color: #4b4b4f;
    font-weight: 700;
}

.trust-badges-stats {
    margin-top: 58px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px;
}

.trust-stat h3 {
    margin: 0 0 14px;
    font-size: clamp(54px, 3.2vw, 74px);
    font-weight: 700;
    line-height: 0.95;
    color: #4b4b4f;
}

.trust-stat-meta {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    max-width: 250px;
}

.trust-stat-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: linear-gradient(180deg, #3967ce 0%, #2454be 100%);
    color: #ffffff;
    font-size: 20px;
    line-height: 1;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.trust-stat-icon img {
    display: block;
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.trust-stat p {
    margin: 0;
    font-size: clamp(16px, 1.7vw, 16px);
    line-height: 1.3;
    color: #5a5a60;
}

/* 5th stat — dark card, mobile-only */
.trust-stat-last { display: none; }

.solutions-showcase {
    background: #f4f7fb;
    padding: 0 0 110px;
}

.solutions-showcase-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.solutions-showcase-head {
    text-align: center;
    margin-bottom: 54px;
    padding-top: 96px;
}

.solutions-kicker {
    margin: 0 0 18px;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    color: #4a7ff0;
}

.solutions-title {
    margin: 0 auto;
    max-width: 900px;
    font-family: 'Kamerik105', sans-serif;
    font-size: clamp(42px, 4.2vw, 42px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.055em;
    color: #24262b;
}

.solutions-title span {
    color: #2f5db7;
}

.solutions-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.solutions-nav-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 18px 36px rgba(34, 58, 108, 0.08);
    padding: 28px 24px;
    position: sticky;
    top: 100px;
}

.solution-nav-item {
    cursor: pointer;
    transition: opacity 0.25s ease;
}

.solution-nav-item:not(.active) {
    opacity: 0.5;
}

.solution-nav-item:not(.active):hover {
    opacity: 0.75;
}

.solution-nav-item + .solution-nav-item {
    margin-top: 48px;
}

.solution-nav-item h3 {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.05em;
    color: #8f949e;
}

.solution-nav-item.active h3 {
    color: #23262d;
}

.solution-nav-item h3 span {
    color: #2d5cbc;
}

.solution-nav-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.2;
    color: #a3a8b0;
}

.solutions-cards {
    display: grid;
    gap: 18px;
}

.solution-feature-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(48, 71, 127, 0.08);
    border-radius: 16px;
    box-shadow: 0 18px 36px rgba(34, 58, 108, 0.08);
    padding: 34px 32px 34px;
}

.solution-feature-card.compact {
    min-height: 200px;
}

.solution-card-arrow {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #315ec0;
    color: #ffffff;
    font-size: 22px;
    line-height: 1;
    text-decoration: none;
}

.solution-feature-card h3 {
    margin: 0 0 12px;
    max-width: 470px;
    font-size: clamp(34px, 3vw, 52px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.055em;
    color: #43454c;
}

.solution-card-copy {
    margin: 0;
    max-width: 690px;
    font-size: 17px;
    line-height: 1.45;
    color: #5d626c;
}

.solution-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.solution-benefit {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.solution-benefit-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #315ec0;
}

.solution-benefit-icon img {
    width: 17px;
    height: 17px;
    object-fit: contain;
}

.solution-benefit p {
    margin: 0;
    font-size: 15px;
    line-height: 1.2;
    color: #4f5560;
}

.solution-services-grid {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid #dde4ee;
}

.solution-service {
    min-height: 112px;
    padding: 22px 16px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

.solution-service + .solution-service {
    border-left: 1px solid #dde4ee;
}

.solution-service-icon {
    color: #4a7ff0;
    font-size: 22px;
    line-height: 1;
}

.solution-service p {
    margin: 0;
    max-width: 150px;
    font-size: 15px;
    line-height: 1.2;
    color: #22252c;
}

.solution-apps-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid #dde4ee;
    border-radius: 10px;
    overflow: hidden;
}

.solution-app {
    padding: 18px 10px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.solution-app + .solution-app {
    border-left: 1px solid #dde4ee;
}

.solution-app img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.solution-app p {
    margin: 0;
    font-size: 13px;
    color: #22252c;
    font-weight: 500;
}

@media (max-width: 1100px) {
    .header-inner {
        gap: 20px;
        padding: 14px 20px;
        height: auto;
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-logo {
        width: 100%;
        justify-content: center;
    }

    .header-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px 24px;
    }

    .btn-get-in-touch {
        padding: 10px 18px;
    }

    .hero-brand-inner {
        height: 520px;
    }

    .hero-title {
        font-size: clamp(78px, 17vw, 180px);
        white-space: normal;
        line-height: 0.9;
    }

    .pin-developer { left: 38%; top: 20%; }
    .pin-strategist { left: 72%; top: 23%; }
    .pin-designer  { left: 6%; top: 54%; }
    .pin-investor  { left: 44%; top: 70%; }
    .pin-manager   { left: 80%; top: 62%; }

    .ai-transformation-copy {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .ai-transformation-title,
    .ai-transformation-lead,
    .ai-point,
    .ai-story-btn {
        max-width: none;
    }

    .trust-badges-logos {
        flex-wrap: wrap;
        gap: 30px;
    }

    .trust-badges-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .solutions-layout {
        grid-template-columns: 1fr;
    }

    .solutions-nav-card {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
    }

    .solution-nav-item + .solution-nav-item {
        margin-top: 0;
    }

    .solution-benefits {
        grid-template-columns: 1fr;
    }

    .solution-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .solution-service:nth-child(3),
    .solution-service:nth-child(4) {
        border-top: 1px solid #dde4ee;
    }

    .solution-service:nth-child(3) {
        border-left: 0;
    }
}

/* ── Mobile header layout + hero overrides — must come AFTER 1100px block ── */
@media (max-width: 768px) {
    /* Header fix */
    .header-inner {
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        padding: 0 20px;
        height: 64px;
    }

    .header-logo {
        flex: 0 0 auto;
        width: auto;
        justify-content: flex-start;
    }

    .header-nav {
        flex: none;
        order: unset;
        width: 100%;
    }

    .hamburger {
        flex: 0 0 auto;
        margin-left: auto;
    }

    /* Hero section — hide desktop big-text hero, show copy + mobile pins */
    .hero-brand { display: none; }

    .ai-transformation {
        padding: 40px 0 32px;
    }

    .ai-transformation-inner {
        padding: 0 20px;
    }

    .ai-transformation-copy {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .ai-transformation-title {
        font-size: clamp(30px, 8vw, 44px);
        line-height: 1.15;
    }

    .ai-transformation-lead {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .ai-story-btn {
        width: 100%;
        min-height: 60px;
        padding: 14px 16px 14px 28px;
        gap: 16px;
    }

    .ai-story-btn span:first-child {
        font-size: clamp(16px, 4.5vw, 22px);
    }

    .ai-story-btn-arrow {
        flex: 0 0 56px;
        font-size: 24px;
        min-height: 32px;
    }

    /* Mobile pin grid */
    .mobile-pins-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px 16px;
        margin-top: 36px;
        padding: 28px 4px;
        position: relative;
        overflow: hidden;
    }

    .mobile-pins-watermark {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-family: 'Kamerik105', sans-serif;
        font-size: clamp(52px, 18vw, 90px);
        font-weight: 900;
        white-space: nowrap;
        pointer-events: none;
        z-index: 0;
        line-height: 1;
        letter-spacing: -0.04em;
        opacity: 0.15;
    }

    .mobile-pins-watermark .text-dark { color: #404040; }
    .mobile-pins-watermark .text-blue {
        background: linear-gradient(135deg, #0C1948 0%, #3E7CCF 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .mobile-pin {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        width: calc(33.33% - 12px);
    }

    .mobile-pin-avatar {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #e8e8e8;
    }

    .mobile-pin-label {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .mobile-pin-label span {
        font-size: 12px;
        font-weight: 500;
        color: #333;
    }

    .mobile-pin-cursor {
        width: 12px;
        height: 15px;
    }

    /* ── Solutions: horizontal sticky tab bar on mobile ── */
    .solutions-showcase {
        overflow-x: hidden;
    }

    .solutions-showcase-inner {
        padding: 0;
        max-width: 100%;
        overflow: visible;
    }

    .solutions-showcase-head {
        padding: 40px 20px 24px;
        text-align: left;
        margin-bottom: 0;
    }

    .solutions-layout {
        display: block;
    }

    /* sticky tab strip — full viewport width */
    .solutions-nav-card {
        position: sticky;
        top: 64px;
        z-index: 50;
        display: flex !important;
        flex-direction: row;
        grid-template-columns: unset;
        overflow-x: auto;
        gap: 8px;
        padding: 10px 16px;
        margin: 0;
        width: 100%;
        background: #ffffff;
        border-radius: 0;
        box-shadow: 0 2px 12px rgba(0,0,0,0.09);
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .solutions-nav-card::-webkit-scrollbar { display: none; }

    .solution-nav-item {
        flex: 0 0 auto;
        display: inline-flex;
        align-items: center;
        padding: 8px 20px;
        border-radius: 50px;
        background: #f2f4f8;
        border: 1.5px solid #e5e7eb;
        opacity: 1;
        transition: background 0.2s, border-color 0.2s;
        margin-top: 0 !important;
    }

    .solution-nav-item.active {
        background: linear-gradient(135deg, #0C1948 0%, #3E7CCF 100%);
        border-color: #3E7CCF;
    }

    .solution-nav-item:not(.active) { opacity: 1; }

    .solution-nav-item h3 {
        font-size: 12px;
        font-weight: 400;
        margin: 0;
        white-space: nowrap;
        color: #4b5563;
        letter-spacing: 0;
        line-height: 1;
    }

    .solution-nav-item.active h3 { color: #ffffff; }
    .solution-nav-item h3 span { color: inherit; }
    .solution-nav-item p { display: none; }

    /* cards — only active card visible */
    .solutions-cards {
        display: block;
        padding: 16px 16px 40px;
    }

    .solution-feature-card {
        width: 100%;
        box-sizing: border-box;
        padding: 24px 20px;
        border-radius: 16px;
        min-height: auto;
    }

    .solution-feature-card.mobile-hidden {
        display: none;
    }
}

@media (max-width: 767px) {
    .header-logo img {
        height: 34px;
        width: auto;
    }

    .hero-brand {
        background-size: 120px 120px;
    }

    .hero-brand-inner {
        height: 610px;
        padding: 28px 16px 20px;
    }

    .hero-title {
        top: 42%;
        left: 16px;
        right: 16px;
        font-size: clamp(56px, 19vw, 96px);
        white-space: normal;
        line-height: 0.88;
    }

    .pin {
        gap: 5px;
    }

    .pin-avatar {
        width: 42px;
        height: 42px;
    }

    .pin-tag {
        gap: 4px;
    }

    .pin-cursor {
        width: 14px;
        height: 18px;
    }

    .pin-name {
        padding: 4px 8px;
        font-size: 11px;
    }

    .pin-developer { left: 36%; top: 13%; }
    .pin-strategist { left: 63%; top: 16%; }
    .pin-designer  { left: 3%; top: 48%; }
    .pin-investor  { left: 16%; top: 79%; }
    .pin-manager   { left: 61%; top: 77%; }

    .ai-transformation-inner {
        padding: 0px 16px 64px;
    }

    .ai-transformation-copy {
        gap: 28px;
    }

    .ai-transformation-title {
        font-size: clamp(36px, 12vw, 52px);
        line-height: 1.02;
    }

    .ai-transformation-lead {
        margin-bottom: 24px;
        font-size: clamp(22px, 6.8vw, 30px);
        line-height: 1.18;
    }

    .ai-transformation-points {
        gap: 18px;
        margin-bottom: 28px;
    }

    .ai-point {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 12px;
    }

    .ai-point-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
        margin-top: 1px;
    }

    .ai-point p {
        font-size: clamp(17px, 5vw, 22px);
        line-height: 1.25;
    }

    .ai-story-btn {
        width: 100%;
        min-height: 64px;
        padding: 12px 12px 12px 18px;
        gap: 12px;
    }

    .ai-story-btn span:first-child {
        font-size: clamp(18px, 5vw, 24px);
    }

    .ai-story-btn-arrow {
        flex-basis: 60px;
        min-height: 30px;
        font-size: 24px;
    }

    .trust-badges {
        padding: 8px 0 64px;
    }

    .trust-badges-inner {
        padding: 0;
    }

    .trust-badges-shell {
        width: 100%;
        border-radius: 22px 22px 0 0;
        padding: 24px 12px 0;
    }

    .trust-badges-logos {
        overflow: hidden;
    }

    .trust-logos-track {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        gap: 12px;
        padding: 0 0 22px;
    }

    .trust-badge-logo {
        min-height: 64px;
        flex: 0 0 calc(25vw - 10px);
        width: calc(25vw - 10px);
        justify-content: center;
    }

    .trust-badge-logo img {
        max-width: 100%;
        max-height: 60px;
        object-fit: contain;
    }

    .trust-badges-card {
        border-radius: 18px 18px 0 0;
        padding: 28px 16px 0;
        min-height: auto;
    }

    .trust-badges-title {
        font-size: clamp(28px, 9vw, 40px);
        max-width: 100%;
        line-height: 1.08;
    }

    .trust-badges-stats {
        margin-top: 28px;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        border-top: 1px solid #e8e8e8;
        border-left: 1px solid #e8e8e8;
    }

    .trust-stat {
        padding: 20px 16px;
        border-right: 1px solid #e8e8e8;
        border-bottom: 1px solid #e8e8e8;
    }

    .trust-stat h3 {
        margin-bottom: 8px;
        font-size: clamp(32px, 9vw, 46px);
    }

    .trust-stat-meta {
        max-width: 100%;
        grid-template-columns: 32px minmax(0, 1fr);
        gap: 8px;
    }

    .trust-stat-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .trust-stat-icon img {
        width: 14px;
        height: 14px;
    }

    .trust-stat p {
        font-size: 13px;
        line-height: 1.3;
        color: #5a5a60;
    }

    /* 5th dark stat card — mobile only */
    .trust-stat-last {
        display: flex;
        align-items: center;
        gap: 16px;
        background: #1a2340;
        padding: 22px 20px;
        border-radius: 0 0 18px 18px;
        margin-bottom: 0;
    }

    .trust-stat-last h3 {
        margin: 0;
        font-size: clamp(36px, 10vw, 50px);
        font-weight: 700;
        line-height: 1;
        color: #ffffff;
        white-space: nowrap;
    }

    .trust-stat-last .trust-stat-meta {
        max-width: 100%;
        grid-template-columns: 30px minmax(0, 1fr);
        gap: 8px;
        align-items: center;
    }

    .trust-stat-last .trust-stat-icon {
        background: #2a5dc8;
        width: 30px;
        height: 30px;
    }

    .trust-stat-last p {
        font-size: 13px;
        line-height: 1.3;
        color: #a0b4d6;
    }

    /* reset the old single-column override that gets applied after this */
    .trust-stat p {
        font-size: 13px;
        line-height: 1.3;
    }

    .solutions-showcase {
        padding: 0 0 76px;
    }

    .solutions-showcase-inner {
        padding: 0 16px;
    }

    .solutions-showcase-head {
        margin-bottom: 34px;
        padding-top: 68px;
    }

    .solutions-kicker {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .solutions-title {
        font-size: clamp(30px, 8vw, 42px);
        line-height: 1.14;
    }

    .solutions-layout {
        gap: 16px;
    }

    .solutions-nav-card {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 18px 16px;
    }

    .solution-nav-item h3 {
        font-size: 24px;
    }

    .solution-nav-item p {
        font-size: 14px;
    }

    .solution-feature-card {
        padding: 24px 18px 22px;
    }

    .solution-feature-card.compact {
        min-height: 160px;
    }

    .solution-card-arrow {
        top: 18px;
        right: 18px;
        width: 46px;
        height: 46px;
        font-size: 24px;
    }

    .solution-feature-card h3 {
        max-width: 270px;
        font-size: clamp(28px, 8vw, 38px);
    }

    .solution-card-copy {
        font-size: 15px;
        line-height: 1.4;
    }

    .solution-benefits {
        margin-top: 24px;
        gap: 14px;
    }

    .solution-benefit {
        grid-template-columns: 32px minmax(0, 1fr);
        gap: 10px;
    }

    .solution-benefit-icon {
        width: 32px;
        height: 32px;
    }

    .solution-benefit-icon img {
        width: 15px;
        height: 15px;
    }

    .solution-benefit p {
        font-size: 14px;
    }

    .solution-services-grid {
        margin-top: 26px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .solution-service {
        min-height: 96px;
        padding: 18px 14px;
    }

    .solution-service + .solution-service {
        border-left: 1px solid #dde4ee;
        border-top: 0;
    }

    .solution-service:nth-child(odd) {
        border-left: 0;
    }

    .solution-service:nth-child(n+3) {
        border-top: 1px solid #dde4ee;
    }
}

@media (max-width: 479px) {
    .header-nav {
        gap: 8px 12px;
    }

    .header-nav a {
        font-size: 12px;
    }

    .hero-brand-inner {
        height: 650px;
    }

    .hero-title {
        top: 40%;
        font-size: clamp(48px, 18vw, 78px);
    }

    .pin-developer { left: 30%; top: 12%; }
    .pin-strategist { left: 57%; top: 15%; }
    .pin-designer  { left: 2%; top: 46%; }
    .pin-investor  { left: 10%; top: 81%; }
    .pin-manager   { left: 52%; top: 79%; }

    .ai-transformation-title {
        font-size: clamp(32px, 11vw, 42px);
    }

    .ai-transformation-lead {
        font-size: clamp(20px, 6.2vw, 24px);
    }

    .ai-story-btn span:first-child {
        font-size: 17px;
    }

    .ai-story-btn-arrow {
        flex-basis: 54px;
    }

    .trust-badges-logos {
        gap: 10px 14px;
    }

    .trust-badge-logo {
        width: 100%;
        min-height: 64px;
    }

    .trust-badge-logo img {
        max-height: 64px;
    }

    .trust-badges-title {
        font-size: clamp(25px, 8.8vw, 34px);
    }

    .solutions-nav-card {
        grid-template-columns: 1fr;
    }

    .solution-feature-card h3 {
        max-width: 220px;
        font-size: clamp(25px, 8vw, 32px);
    }
}

.site-footer {
    background: #f8f8f8;
    border-top: 1px solid #e8e8e8;
    padding: 20px 0;
}

/* ── Awards Section ── */
.awards-section {
    background: linear-gradient(160deg, #0b1d72 0%, #1a3baa 45%, #0c2080 100%);
    padding: 80px 0 90px;
    overflow: hidden;
    width: 100%;
}

.awards-head {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 52px;
}

.awards-kicker {
    margin: 0 0 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
}

.awards-title {
    font-size: clamp(26px, 3.2vw, 42px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin: 0;
}

.awards-scroll {
    overflow: hidden;
    width: 100%;
}

.awards-track {
    display: flex;
    gap: 20px;
    padding: 0 24px;
    width: max-content;
    padding-left: calc((100vw - 1200px) / 2 + 24px);
}

.award-card {
    flex-shrink: 0;
    width: 280px;
    border-radius: 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(12px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.award-card-img {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px 28px 28px;
    min-height: 220px;
}

.award-card-img img {
    max-width: 140px;
    max-height: 140px;
    object-fit: contain;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.25));
}

.award-card-footer {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 16px 20px;
    text-align: center;
}

.award-card-footer p {
    margin: 0;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    line-height: 1.45;
}

@media (max-width: 1200px) {
    .awards-track {
        padding-left: 24px;
    }
}

/* ── Portfolio Showcase Section ── */
.portfolio-showcase {
    background: linear-gradient(145deg, #0b1d72 0%, #1a3baa 50%, #0c2080 100%);
    padding: 80px 0 100px;
    width: 100%;
}

.portfolio-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.portfolio-kicker {
    margin: 0 0 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #ffffff;
    text-transform: uppercase;
    opacity: 0.85;
}

.portfolio-title {
    margin: 0 0 14px;
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.portfolio-lead {
    margin: 0 0 25px;
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    max-width: 560px;
}

.portfolio-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

/* Left nav */
.portfolio-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: sticky;
    top: 100px;
}

.portfolio-nav-item {
    padding: 18px 20px;
    border-radius: 12px;
    cursor: pointer;
    background: rgba(255,255,255,0.06);
    transition: background 0.25s ease;
}

.portfolio-nav-item.active {
    background: rgba(255,255,255,0.15);
}

.portfolio-nav-item:hover:not(.active) {
    background: rgba(255,255,255,0.1);
}

.portfolio-nav-item h3 {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    transition: color 0.25s;
}

.portfolio-nav-item.active h3 {
    color: #ffffff;
}

.portfolio-nav-item p {
    margin: 0;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    line-height: 1.35;
}

/* Right cards */
.portfolio-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.portfolio-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 0;
    min-height: 340px;
    align-items: stretch;
}

.portfolio-card-content {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.portfolio-card-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
    object-position: left;
}

.portfolio-card-desc {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: #3a3d4a;
    font-weight: 600;
}

.portfolio-card-stats {
    display: flex;
    gap: 40px;
}

.portfolio-stat h4 {
    margin: 0 0 4px;
    font-size: 30px;
    font-weight: 700;
    color: #1a1d24;
}

.portfolio-stat p {
    margin: 0;
    font-size: 12px;
    color: #8a8f9c;
    line-height: 1.3;
}

.portfolio-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(90deg, #122FBB 0%, #385CD2 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 20px;
    border-radius: 10px;
    width: fit-content;
    margin-top: auto;
}

.portfolio-card-btn span {
    background: rgba(255,255,255,0.15);
    padding: 6px 12px;
    border-radius: 6px;
}

.portfolio-card-media {
    /* background: linear-gradient(135deg, #c8e8ff 0%, #a0c8f0 100%); */
    overflow: hidden;
    display: block;
    align-self: stretch;
    padding: 15px;
}

.portfolio-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 12px;
}

@media (max-width: 1000px) {
    .portfolio-layout {
        grid-template-columns: 1fr;
    }

    .portfolio-nav {
        flex-direction: row;
        flex-wrap: wrap;
        position: static;
    }

    .portfolio-nav-item {
        flex: 1;
        min-width: 140px;
    }
}

@media (max-width: 700px) {
    .portfolio-card {
        grid-template-columns: 1fr;
    }

    .portfolio-card-media {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .portfolio-showcase {
        overflow-x: hidden;
        padding: 40px 0 60px;
    }

    .portfolio-inner {
        padding: 0;
        max-width: 100%;
    }

    .portfolio-head {
        padding: 0 20px 24px;
    }

    .portfolio-layout {
        display: block;
    }

    /* sticky horizontal tab bar */
    .portfolio-nav {
        position: sticky;
        top: 64px;
        z-index: 50;
        display: flex !important;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 8px;
        padding: 10px 16px;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .portfolio-nav::-webkit-scrollbar { display: none; }

    .portfolio-nav-item {
        flex: 1 1 0;
        min-width: 0;
        text-align: center;
        padding: 8px 12px;
        border-radius: 50px;
        background: rgba(255,255,255,0.1);
        border: 1.5px solid rgba(255,255,255,0.15);
        transition: background 0.2s, border-color 0.2s;
    }

    .portfolio-nav-item.active {
        background: linear-gradient(135deg, #0C1948 0%, #3E7CCF 100%);
        border-color: #3E7CCF;
    }

    .portfolio-nav-item h3 {
        font-size: 12px;
        font-weight: 400;
        margin: 0;
        white-space: nowrap;
        color: rgba(255,255,255,0.7);
    }

    .portfolio-nav-item.active h3 {
        color: #ffffff;
    }

    .portfolio-nav-item p { display: none; }

    .portfolio-cards {
        padding: 16px 16px 0;
        display: block;
    }

    .portfolio-card {
        border-radius: 16px;
        margin-bottom: 0;
    }

    .portfolio-card.mobile-hidden {
        display: none;
    }
}

/* ── Testimonials Section ── */
.testimonials {
    background: linear-gradient(160deg, #0b1d72 0%, #1a3baa 50%, #0c2080 100%);
    padding: 80px 0 100px;
    overflow: hidden;
    width: 100%;
}

.testimonials-head {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 52px;
}

.testimonials-kicker {
    margin: 0 0 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
}

.testimonials-title {
    font-size: clamp(26px, 3.2vw, 44px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin: 0;
}

.testimonials-scroll {
    overflow-x: auto;
    scrollbar-width: none;
    cursor: grab;
}

.testimonials-scroll::-webkit-scrollbar { display: none; }
.testimonials-scroll.grabbing { cursor: grabbing; }

.testimonials-track {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 0 20px;
    width: max-content;
}

/* Text card */
.testi-card {
    flex-shrink: 0;
    border-radius: 18px;
}

.testi-text {
    width: 320px;
    padding: 28px 26px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 380px;
}

.testi-stars {
    font-size: 22px;
    color: #f5c518;
    letter-spacing: 2px;
}

.testi-review {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255,255,255,0.85);
    flex: 1;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    overflow: hidden;
    flex-shrink: 0;
}

.testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testi-user-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.testi-user-info strong {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
}

.testi-user-info span {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}

/* Image card */
.testi-image {
    width: 310px;
    height: 420px;
    position: relative;
    overflow: hidden;
}

.testi-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.testi-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.25);
    font-size: 22px;
    color: #1a1d24;
}

.testi-play-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
    font-size: 22px;
    color: #1a1d24;
}

@media (max-width: 768px) {
    .testimonials-title {
        font-size: clamp(20px, 5.5vw, 26px);
    }

    .testimonials-track {
        padding-left: 24px;
    }

    .testi-text {
        width: 280px;
        height: 360px;
    }

    .testi-image {
        width: 260px;
        height: 380px;
    }
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    font-size: 14px;
    color: #666666;
}

/* ── Industries Section ── */
.industries {
    padding: 80px 0 0;
    background: #ffffff;
    overflow: hidden;
}

.industries-head {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 48px;
}

.industries-kicker {
    margin: 0 0 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #2d5cbc;
    text-transform: uppercase;
}

.industries-title {
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 400;
    color: #9a9ea8;
    line-height: 1.25;
    margin: 0;
}

.industries-title strong {
    color: #1a1d24;
    font-weight: 700;
}

.industries-scroll {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.industries-scroll::-webkit-scrollbar {
    display: none;
}

.industries-scroll.grabbing {
    cursor: grabbing;
}

.industries-track {
    display: flex;
    gap: 20px;
    padding: 0 24px 60px;
    width: max-content;
    padding-left: calc((100vw - 1200px) / 2 + 24px);
}

.industry-card {
    position: relative;
    width: 360px;
    height: 420px;
    border-radius: 18px;
    overflow: hidden;
    flex-shrink: 0;
}

.industry-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.industry-card:hover img {
    transform: scale(1.05);
}

.industry-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.45) 0%,
        rgba(0,0,0,0.1) 35%,
        rgba(0,0,0,0.55) 65%,
        rgba(0,0,0,0.82) 100%
    );
    display: flex;
    flex-direction: column;
    padding: 24px 22px 26px;
}

.industry-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.industry-card-top h3 {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.industry-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    font-size: 18px;
    flex-shrink: 0;
    transition: background 0.2s;
}

.industry-arrow:hover {
    background: rgba(255,255,255,0.35);
}

.industry-tags {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.industry-tags span {
    display: inline-block;
    width: fit-content;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

.industry-see-all {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 13px 13px 20px;
    border-radius: 10px;
    width: 100%;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.industry-see-all-text {
    color: #0d1f6e;
    white-space: nowrap;
}

.industry-see-all-arrow {
    background: #f5f5f5;
    color: #0C1948;
    width: 80px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1;
}

.industry-card:first-child .industry-see-all {
    opacity: 1;
    transform: translateY(0);
}

.industry-card:hover .industry-see-all {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .industries-track {
        padding-left: 24px;
    }
}

@media (max-width: 600px) {
    .industry-card {
        width: 300px;
        height: 380px;
    }
}

/* ── Events Section ── */
.events-section {
    display: grid;
    grid-template-columns: calc((100vw - 1200px) / 2 + 580px) 1fr;
    gap: 50px;
    align-items: center;
    padding: 90px 0;
    background: #ffffff;
    overflow: hidden;
}

.events-left {
    padding-left: max(24px, calc((100vw - 1200px) / 2 + 24px));
}

.events-kicker {
    margin: 0 0 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #2d5cbc;
    text-transform: uppercase;
}

.events-title {
    margin: 0 0 24px;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 400;
    line-height: 1.2;
    color: #1a1d24;
}

.events-title-grey {
    color: #9a9ea8;
    font-weight: 400;
}

.events-title strong {
    color: #1a1d24;
    font-weight: 700;
}

.events-desc {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #6b717e;
}

.events-divider {
    border: none;
    border-top: 1px solid #e8ecf2;
    margin: 32px 0;
}

.events-logos {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.events-logo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1.5px solid #e4e8f0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.events-logo img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

/* Right gallery */
.events-right {
    height: 534px;
}

.events-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    height: 100%;
}

.events-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
}

.events-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    flex: 1;
}

.events-img-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.events-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.50);
    display: flex;
    align-items: center;
    justify-content: center;
}

.events-img-overlay span {
    font-size: 58px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.03em;
}

@media (max-width: 900px) {
    .events-section {
        grid-template-columns: 1fr;
        padding: 60px 24px;
    }

    .events-left {
        padding-left: 0;
    }

    .events-right {
        height: 420px;
    }
}

@media (max-width: 500px) {
    .events-right {
        height: 320px;
    }

    .events-logo {
        width: 56px;
        height: 56px;
    }
}

/* ── New Solutions Section ── */
.new-solutions {
    padding: 80px 0;
    background: #ffffff;
}

.new-solutions-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.new-solutions-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.new-solutions-kicker {
    margin: 0 0 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #2d5cbc;
    text-transform: uppercase;
}

.new-solutions-title {
    margin: 0;
    font-size: clamp(26px, 3vw, 37px);
    font-weight: 400;
    line-height: 1.25;
    color: #9a9ea8;
}

.new-solutions-title strong {
    color: #1a1d24;
    font-weight: 700;
}

.new-solutions-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    min-height: 240px;
}

.new-solutions-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-solutions-card-overlay {
    position: relative;
    z-index: 1;
    padding: 32px 28px;
    background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,10,40,0.45) 100%);
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 20px;
}

.new-solutions-card-text {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
}

.new-solutions-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    color: #1a1d24;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 22px;
    border-radius: 50px;
    width: fit-content;
}

.new-solutions-card-btn span {
    color: #2d5cbc;
}

/* Right side items */
.new-sol-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 42px 0;
    border-bottom: 1px solid #e8ecf2;
}

.new-sol-item:first-child {
    padding-top: 0;
}

.new-sol-item:last-child {
    border-bottom: none;
}

.new-sol-icon {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    border: 1.5px solid #dde4ee;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.new-sol-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.new-sol-body {
    flex: 1;
}

.new-sol-body h3 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
    color: #1a1d24;
}

.new-sol-body p {
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
    color: #6b717e;
}

.new-sol-arrow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    width: 44px;
    height: 34px;
    background: #2d5cbc;
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    line-height: 1;
}

@media (max-width: 900px) {
    .new-solutions-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .new-solutions {
        padding: 50px 0;
    }

    .new-sol-icon {
        width: 48px;
        height: 48px;
    }

    .new-sol-body h3 {
        font-size: 17px;
    }
}

/* ── Clients and Partners Section ── */
.clients-section {
    padding: 80px 0 60px;
    background: #ffffff;
    overflow: hidden;
}

.clients-head {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    margin-bottom: 48px;
}

.clients-kicker {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #2d5cbc;
    text-transform: uppercase;
    margin: 0 0 16px;
}

.clients-title {
    font-size: 36px;
    font-weight: 400;
    color: #9aa0ab;
    line-height: 1.25;
    margin: 0 0 18px;
}

.clients-title strong {
    color: #1a1d24;
    font-weight: 700;
}

.clients-desc {
    font-size: 16px;
    color: #6b717e;
    line-height: 1.65;
    max-width: 560px;
    margin: 0;
}

/* scroll rows */
.clients-row {
    overflow: hidden;
    width: 100%;
    cursor: default;
    margin-bottom: 16px;
}

.clients-row:last-child { margin-bottom: 0; }

.clients-track {
    display: flex;
    gap: 16px;
    width: max-content;
}

/* individual logo card */
.client-card {
    flex-shrink: 0;
    width: 200px;
    height: 100px;
    background: #f3f4f6;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 24px;
    overflow: hidden;
}

.client-card img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(1) opacity(0.55);
    transition: filter 0.35s ease;
    display: block;
}

.client-card:hover img {
    filter: grayscale(0) opacity(1);
}

@media (max-width: 768px) {
    .clients-title { font-size: 26px; }
    .client-card { width: 160px; height: 80px; }
}

/* ── Why Choose WebingoX Section ── */
.why-section {
    padding: 90px 0;
    background: #ffffff;
}

.why-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.why-head {
    text-align: center;
    margin-bottom: 48px;
}

.why-kicker {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #2d5cbc;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.why-title {
    font-size: 38px;
    font-weight: 700;
    color: #9aa0ab;
    line-height: 1.25;
    margin: 0;
}

.why-title span {
    color: #1a1d24;
}

/* grid: 3 equal cols, card1 & card4 span 2 → wide; card2 & card3 stay 1 → square */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.wc1 { grid-column: span 2; }
.wc2 { grid-column: span 1; }
.wc3 { grid-column: span 1; }
.wc4 { grid-column: span 2; }

/* base card */
.why-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #080f2a;
    min-height: 290px;
}

/* ── ALL cards: full background image ── */
.why-card--full {
    display: flex;
    flex-direction: column;
}

.why-card--full .why-card-img {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.why-card--full .why-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Top cards (1, 2): dark left → transparent right so image shows on right */
.wc1 .why-card-img::after,
.wc2 .why-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
        rgba(4, 10, 32, 0.93) 0%,
        rgba(4, 10, 32, 0.65) 45%,
        rgba(4, 10, 32, 0.12) 100%);
}

/* Bottom cards (3, 4): dark bottom → transparent top */
.wc3 .why-card-img::after,
.wc4 .why-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(4, 10, 32, 0.93) 0%,
        rgba(4, 10, 32, 0.55) 45%,
        rgba(4, 10, 32, 0.08) 100%);
}

/* ── Card header (top-row cards): title left + arrow right at top ── */
.why-card-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 26px 26px 0 26px;
}

/* ── Card footer (bottom-row cards): title left + arrow right at bottom ── */
.why-card-footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    padding: 0 26px 26px 26px;
    margin-top: auto;
}

.why-footer-text { flex: 1; min-width: 0; }

/* ── Title lines ── */
.wc-line1 {
    margin: 0;
    font-size: 21px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.3;
}

.wc-line2 {
    margin: 0;
    font-size: 21px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

/* bottom cards: first line white-bold, second line grey */
.wc-white { font-weight: 700; color: #ffffff; }
.wc-grey  { font-weight: 700; color: #7a8099; }

/* ── Circle arrow button ── */
.why-circle-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.30);
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    flex-shrink: 0;
    transition: background 0.2s;
}

.why-circle-arrow:hover { background: rgba(255,255,255,0.22); }

/* ── Learn More button — same as portfolio-card-btn ── */
.why-learn-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    color: #1a1d24;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 20px;
    border-radius: 10px;
    width: fit-content;
    position: relative;
    z-index: 1;
    margin: auto 0 26px 26px;
    transition: opacity 0.2s;
}

.why-learn-btn:hover { opacity: 0.88; }

.wlb-text { white-space: nowrap; }

.wlb-arrow {
    background: rgba(0,0,0,0.08);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 16px;
    color: #1a1d24;
}

/* Card 4 "Learn More" pinned absolute top-left */
.why-learn-btn--abs {
    position: absolute;
    top: 26px;
    left: 26px;
    margin: 0;
    z-index: 1;
}

@media (max-width: 900px) {
    .why-grid { grid-template-columns: 1fr 1fr; }
    .wc1, .wc2, .wc3, .wc4 { grid-column: span 1; }
}

@media (max-width: 580px) {
    .why-grid { grid-template-columns: 1fr; }
    .why-title { font-size: 26px; }
}

@media (max-width: 480px) {
    .why-section { padding: 60px 0; }
    .wc-line1, .wc-line2 { font-size: 18px; }
}

/* ── Contact Section ── */
.contact-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.contact-bg-img {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.contact-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

/* left */
.contact-kicker {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.contact-title {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin: 0 0 32px;
}

.contact-map {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.15);
}

/* right: form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 25px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-input {
    width: 100%;
    padding: 16px 18px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 10px;
    color: #ffffff;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.contact-input::placeholder { color: rgba(255,255,255,0.50); }

.contact-input:focus {
    border-color: rgba(255,255,255,0.45);
    background: rgba(255,255,255,0.16);
}

.contact-textarea {
    resize: none;
    min-height: 110px;
}

.contact-submit {
    width: 100%;
    padding: 17px;
    background: #ffffff;
    color: #0e1e5b;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.contact-submit:hover { opacity: 0.90; }

@media (max-width: 900px) {
    .contact-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 480px) {
    .contact-section { padding: 60px 0; }
    .contact-title { font-size: 26px; }
    .contact-form-row { grid-template-columns: 1fr; }
}

/* ── FAQ Section ── */
.faq-section {
    background: #eef2f9;
    padding: 80px 0;
}

.faq-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: start;
}

/* left */
.faq-kicker {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #2d5cbc;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.faq-title {
    font-size: 34px;
    font-weight: 700;
    color: #1a1d24;
    line-height: 1.25;
    margin: 0 0 32px;
}

/* accordion list */
.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #dce9ff;
    color: #2d5cbc;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-q-text {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #3a3f4d;
    line-height: 1.45;
}

.faq-chevron {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f0f4fa;
    color: #6b717e;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.2s;
}

.faq-open .faq-chevron { transform: rotate(180deg); }
.faq-open .faq-num { background: #2d5cbc; color: #ffffff; }

/* answer panel */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 20px 0 68px;
}

.faq-open .faq-answer {
    max-height: 200px;
    padding: 0 20px 20px 68px;
}

.faq-answer p {
    font-size: 15px;
    color: #6b717e;
    line-height: 1.7;
    margin: 0;
}

/* right card */
.faq-right { position: sticky; top: 80px; }

.faq-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    top: 35px;
}

.faq-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.faq-card-deco {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 65%;
    z-index: 1;
    mix-blend-mode: screen;
    pointer-events: none;
}

.faq-card-btns {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 28px;
}

/* WhatsApp green button */
.faq-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    background: #25D366;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    transition: opacity 0.2s;
}

.faq-wa-btn:hover { opacity: 0.88; }

/* Contact Now — navy + arrow box */
.faq-contact-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 14px 14px 20px;
    background: #0e1e5b;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    transition: opacity 0.2s;
}

.faq-contact-btn:hover { opacity: 0.88; }

.faq-contact-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 34px;
    background: rgba(255,255,255,0.18);
    border-radius: 6px;
    font-size: 18px;
}

@media (max-width: 900px) {
    .faq-inner { grid-template-columns: 1fr; }
    .faq-right { position: static; }
}

@media (max-width: 480px) {
    .faq-section { padding: 60px 0; }
    .faq-title { font-size: 26px; }
}

/* ── Blog / Resources Section ── */
.blog-section {
    padding: 80px 0;
    background: #ffffff;
}

.blog-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* header row: title left, button right */
.blog-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
}

.blog-head-left { flex: 1; }

.blog-kicker {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #2d5cbc;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.blog-title {
    font-size: 36px;
    font-weight: 400;
    color: #1a1d24;
    line-height: 1.25;
    margin: 0;
}

.blog-title-grey { color: #9aa0ab; font-weight: 400; }
.blog-title strong { color: #1a1d24; font-weight: 700; }

/* Read More button — dark navy + white arrow box */
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #0e1e5b;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity 0.2s;
}

.blog-read-more:hover { opacity: 0.88; }

.blog-read-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 32px;
    background: rgba(255,255,255,0.18);
    border-radius: 6px;
    font-size: 18px;
}

/* 3-col card grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
}

/* image area */
.blog-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 14px;
}

.blog-card-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.04);
}

/* category badge */
.blog-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #ffffff;
    color: #2d5cbc;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 8px;
    z-index: 1;
}

/* text content */
.blog-card-body {
    padding: 18px 4px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.blog-card-title {
    font-size: 17px;
    font-weight: 600;
    color: #1a1d24;
    line-height: 1.45;
    margin: 0;
}

.blog-card-title strong { font-weight: 700; }

.blog-card-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #8a8f9c;
    margin: 0;
}

.blog-card-date svg { flex-shrink: 0; color: #8a8f9c; }

@media (max-width: 900px) {
    .blog-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 580px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-head { flex-direction: column; align-items: flex-start; }
    .blog-title { font-size: 26px; }
}

/* ── CTA Section ── */
.cta-section {
    padding: 40px 24px 60px;
    background: #ffffff;
}

.cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 64px 80px;
}

/* full-cover background image */
.cta-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* decorative 3D glass shapes */
.cta-deco {
    position: absolute;
    height: 90%;
    width: auto;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: screen;
}

.cta-deco-left  { left: -30px;  bottom: -10px; }
.cta-deco-right { right: -30px; top: 40px; }

/* content above all */
.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

/* badge */
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 50px;
    padding: 8px 20px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(6px);
}

.cta-dots {
    display: flex;
    gap: 4px;
    align-items: center;
}

.cta-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ffffff;
    display: block;
}

/* title */
.cta-title {
    font-size: clamp(28px, 3.2vw, 46px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin: 0;
    letter-spacing: -0.02em;
}

.cta-muted { color: rgba(255,255,255,0.48); }

/* buttons row */
.cta-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Contact Now — blue gradient, same as portfolio btn */
.cta-btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: linear-gradient(90deg, #122FBB 0%, #385CD2 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    transition: opacity 0.2s;
}

.cta-btn-contact:hover { opacity: 0.88; }

.cta-arrow-box {
    background: rgba(255,255,255,0.18);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 16px;
}

/* Whatsapp Now — green */
.cta-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    background: #25D366;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    transition: opacity 0.2s;
}

.cta-btn-whatsapp:hover { opacity: 0.88; }

@media (max-width: 768px) {
    .cta-section { padding: 24px 16px 40px; }
    .cta-inner { padding: 40px 24px; border-radius: 20px; }
    .cta-deco { display: none; }

    .cta-content {
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .cta-title {
        font-size: clamp(26px, 7.5vw, 38px);
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .cta-btn-contact,
    .cta-btn-whatsapp {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 15px;
    }
}

/* ── Site Footer ── */
.site-footer {
    position: relative;
    background: #ffffff;
    overflow: hidden;
    padding: 60px 0 0;
}

/* soft blue glow layers */
.footer-layer {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: 0.9;
}

.footer-layer-left {
    left: 0;
    top: 0;
    width: 45%;
}

.footer-layer-right {
    right: 0;
    top: 0;
    width: 55%;
}

/* large faded watermark text — full width edge to edge */
.footer-watermark {
    position: absolute;
    bottom:63px;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
    display: block;
}

/* main grid */
.footer-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 150px;
    display: grid;
    grid-template-columns: 1.4fr 1.6fr 1fr 1.2fr;
    gap: 48px;
    text-align: left;
}

/* col 1 brand */
.footer-company-name {
    font-size: 16px;
    font-weight: 700;
    color: #0B81DC;
    margin-bottom: 12px;
    line-height: 1.3;
}

.footer-tagline {
    font-size: 14px;
    color: #0B81DC;
    line-height: 1.65;
    opacity: 0.75;
}

/* col headings */
.footer-col-title {
    font-size: 16px;
    font-weight: 700;
    color: #0B81DC;
    margin-bottom: 20px;
}

/* contact items */
.footer-contact-item {
    margin-bottom: 16px;
}

.footer-label {
    display: block;
    font-size: 13px;
    color: #0B81DC;
    opacity: 0.65;
    margin-bottom: 3px;
}

.footer-link {
    font-size: 15px;
    font-weight: 600;
    color: #0B81DC;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-link:hover { opacity: 0.7; }

.footer-address {
    font-size: 14px;
    color: #0B81DC;
    line-height: 1.6;
    margin: 0;
}

/* nav lists */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.footer-links a {
    font-size: 14px;
    color: #0B81DC;
    text-decoration: none;
    text-align: left;
    display: block;
    transition: opacity 0.2s;
}

.footer-links a:hover { opacity: 0.65; }

/* bottom bar */
.footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(11,129,220,0.15);
    padding: 18px 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #0B81DC;
    opacity: 0.65;
}

@media (max-width: 900px) {
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 540px) {
    .footer-inner { grid-template-columns: 1fr; }
}
