:root {
    --orange: #FF5C00;
    --orange-light: #FF7A2E;
    --navy: #0B1B2B;
    --navy-mid: #152535;
    --white: #FFFFFF;
    --off-white: #F8F7F4;
    --gray: #6B7280;
    --gray-light: #E5E7EB;
    --font-display: 'Sora', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--navy);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ===== LANGUAGE TOGGLE ===== */
.lang-bar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: hsla(0, 0%, 100%, .7) !important;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-mark img {
    width: 50px;
    height: 50px;

}

.logo-text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.5px;
}

/* 
.logo-text span {
    color: var(--orange);
} */

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.nav-links a:hover {
    opacity: 1;
}

.lang-toggle {
    display: flex;
    background: var(--navy);
    border-radius: 100px;
    padding: 3px;
    gap: 2px;
}

.lang-btn {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px 14px;
    border-radius: 100px;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
}

.lang-btn.active {
    background: var(--orange);
    color: white;
}

.nav-cta {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: white;
    background: var(--orange);
    border: none;
    padding: 10px 22px;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    letter-spacing: 0.2px;
}

.nav-cta:hover {
    background: var(--orange-light);
    transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
    padding-top: 72px;
    /* min-height: 100vh; */
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
    padding-bottom: 80px;
    gap: 80px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 92, 0, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 92, 0, 0.08);
    border: 1px solid rgba(255, 92, 0, 0.2);
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-badge-text {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    color: var(--orange);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(42px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--navy);
    text-transform: capitalize;
    margin-bottom: 24px;
}

.hero-headline .accent {
    color: var(--orange);
}

.hero-sub {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray);
    max-width: 480px;
    margin-bottom: 40px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: white;
    background: var(--orange);
    border: none;
    padding: 16px 32px;
    border-radius: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
    letter-spacing: 0.2px;
}

.btn-primary:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 92, 0, 0.35);
}

.btn-primary svg {
    transition: transform 0.25s;
}

.btn-primary:hover svg {
    transform: translateX(3px);
}

.btn-secondary {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    background: transparent;
    border: 1.5px solid rgba(11, 27, 43, 0.2);
    padding: 16px 32px;
    border-radius: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
}

.btn-secondary:hover {
    border-color: var(--navy);
    transform: translateY(-2px);
}

/* Hero visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-card {
    width: 100%;
    max-width: 520px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 32px 80px rgba(11, 27, 43, 0.15), 0 0 0 1px rgba(11, 27, 43, 0.06);
    padding: 28px;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.dc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.dc-title {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.3px;
}

.dc-live {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 92, 0, 0.08);
    padding: 5px 12px;
    border-radius: 100px;
}

.dc-live-dot {
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

.dc-live-text {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.dc-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.dc-stat {
    background: var(--off-white);
    border-radius: 14px;
    padding: 16px;
}

.dc-stat-num {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 4px;
}

.dc-stat-num.orange {
    color: var(--orange);
}

.dc-stat-label {
    font-size: 11px;
    color: var(--gray);
    font-weight: 500;
}

.dc-chart {
    height: 80px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 20px;
    padding: 0 4px;
}

.dc-bar {
    flex: 1;
    border-radius: 6px 6px 0 0;
    background: var(--gray-light);
    transition: height 0.4s;
    position: relative;
}

.dc-bar.highlight {
    background: var(--orange);
}

.dc-feed {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: var(--off-white);
    border-radius: 12px;
}

.dc-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    color: white;
}

.dc-item-info {
    flex: 1;
}

.dc-item-name {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 2px;
}

.dc-item-msg {
    font-size: 11px;
    color: var(--gray);
}

.dc-item-time {
    font-size: 11px;
    color: var(--gray);
    opacity: 0.6;
    flex-shrink: 0;
}

.dc-resolve {
    font-size: 10px;
    font-weight: 700;
    color: white;
    background: #22c55e;
    padding: 4px 10px;
    border-radius: 100px;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

/* Floating cards */
.float-badge {
    position: absolute;
    background: white;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 8px 32px rgba(11, 27, 43, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
}

.float-badge-1 {
    bottom: -24px;
    left: -40px;
    animation: float 5s ease-in-out infinite 1s;
}

.float-badge-2 {
    top: 20px;
    right: -36px;
    animation: float 4s ease-in-out infinite 0.5s;
}

.fb-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.fb-icon.green {
    background: rgba(34, 197, 94, 0.12);
}

.fb-icon.orange {
    background: rgba(255, 92, 0, 0.10);
}

.fb-text {}

.fb-val {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.fb-label {
    font-size: 11px;
    color: var(--gray);
    margin-top: 2px;
}

/* ===== SECTION HEADERS ===== */
.section {
    padding: 100px 32px;
    max-width: 1280px;
    margin: 0 auto;
}

.section-full {
    padding: 100px 32px;
}

.label-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
}

.label-tag::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--navy);
    margin-bottom: 20px;
    text-transform: capitalize;
}

.section-title .accent {
    color: var(--orange);
}

.section-sub {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray);
    max-width: 560px;
}

/* ===== WHAT WE DO ===== */
.what-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-top: 40px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 48px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 28px;
    border-radius: 20px;
    border: 1.5px solid var(--gray-light);
    transition: all 0.3s;
    cursor: default;
}

.feature-item:hover {
    border-color: rgba(255, 92, 0, 0.3);
    box-shadow: 0 8px 40px rgba(255, 92, 0, 0.08);
    transform: translateY(-2px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 92, 0, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    color: var(--orange);
}

.feature-text h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.feature-text p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray);
}

/* Why matters */
.why-dark {
    background: var(--navy);
}

.why-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 32px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.why-left .section-title {
    color: white;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.problem-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.problem-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.why-right {}

.solution-box {
    background: var(--orange);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.solution-box::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.solution-headline {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    letter-spacing: -0.8px;
    margin-bottom: 8px;
}

.solution-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.solution-check {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.sc-check {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Industries */
.industries-section {
    background: var(--off-white);
}

.industries-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 32px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 64px;
}

.industry-card {
    background: white;
    border-radius: 20px;
    padding: 28px 24px;
    border: 1.5px solid transparent;
    transition: all 0.3s;
    cursor: default;
    text-align: center;
}

.industry-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(255, 92, 0, 0.12);
}

.industry-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
}

.industry-name {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.3px;
}

/* Outcomes */
.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.outcome-card {
    padding: 36px;
    border-radius: 20px;
    background: var(--off-white);
    border: 1.5px solid var(--gray-light);
    transition: all 0.3s;
}

.outcome-card:hover {
    border-color: rgba(255, 92, 0, 0.25);
    background: white;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(11, 27, 43, 0.08);
}

.outcome-num {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -2px;
}

.outcome-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: -0.4px;
}

.outcome-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* Social proof */
.proof-dark {
    background: var(--navy-mid);
}

.proof-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 32px;
    text-align: center;
}

.proof-inner .section-title {
    color: white;
}

.proof-inner .section-sub {
    color: rgba(255, 255, 255, 0.55);
    margin: 0 auto 60px;
}

.proof-logos {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 48px;
}

.proof-logo-box {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.proof-logo-box:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.proof-logo-icon {
    font-size: 20px;
}

.proof-logo-name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== FINAL CTA ===== */
.final-cta {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.final-cta-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 32px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 92, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.final-headline {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    color: white;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.final-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 48px;
    line-height: 1.6;
}

.final-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-white {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: white;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    padding: 16px 32px;
    border-radius: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
}

.btn-outline-white:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.07);
}

/* ===== CONTACT ===== */
.contact-section {
    background: var(--off-white);
}

.contact-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 32px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.contact-left {}

.contact-tagline {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-top: 20px;
}

.contact-form {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 4px 24px rgba(11, 27, 43, 0.06);
    border: 1px solid var(--gray-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.form-label {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.form-input {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--navy);
    background: var(--off-white);
    border: 1.5px solid transparent;
    border-radius: 12px;
    padding: 14px 18px;
    outline: none;
    transition: all 0.2s;
    width: 100%;
}

.form-input::placeholder {
    color: var(--gray);
    opacity: 0.6;
}

.form-input:focus {
    border-color: var(--orange);
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 92, 0, 0.08);
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: white;
    background: var(--orange);
    border: none;
    padding: 18px;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.25s;
    margin-top: 8px;
    letter-spacing: 0.3px;
}

.form-submit:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 92, 0, 0.35);
}

/* Success message */
.form-success {
    display: none;
    text-align: center;
    padding: 48px 24px;
}

.form-success.show {
    display: block;
}

.form-success-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 15px;
    color: var(--gray);
}

/* ===== FOOTER ===== */
footer {
    background: var(--navy);
    padding: 60px 32px 32px;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 12px;
    max-width: 240px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-langs {
    display: flex;
    gap: 8px;
}

.footer-lang-btn {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.2s;
}

.footer-lang-btn:hover,
.footer-lang-btn.active {
    color: var(--orange);
}

/* ===== HIDDEN LANGUAGE CONTENT ===== */
[data-lang] {
    display: none;
}

[data-lang].visible {
    display: block;
}

[data-lang-inline] {
    display: none;
}

[data-lang-inline].visible {
    display: inline;
}

/* ===== FR TEXT OVERFLOW GUARDS ===== */
/* Prevent long French strings from breaking layouts */
.hero-headline span[data-lang],
.section-title span[data-lang],
.final-headline span[data-lang] {
    display: none;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.hero-headline span[data-lang].visible,
.section-title span[data-lang].visible,
.final-headline span[data-lang].visible {
    display: block;
}

.feature-text h3,
.feature-text p,
.outcome-title,
.outcome-desc,
.industry-name,
.solution-headline,
.dc-item-msg,
.hero-sub,
.section-sub,
.contact-tagline,
.problem-text {
    overflow-wrap: break-word;
    word-break: break-word;
}

/* Hero CTAs wrap gracefully in FR (longer button labels) */
.hero-ctas {
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    white-space: nowrap;
}

/* Nav links: allow slight shrink for FR */
.nav-links {
    flex-wrap: nowrap;
}

.nav-links a {
    white-space: nowrap;
    font-size: clamp(12px, 1.1vw, 14px);
}

/* ===== US MARKET BADGE ===== */
.us-market-strip {
    background: var(--navy);
    padding: 10px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.us-strip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.4px;
}

.us-strip-item .dot {
    width: 5px;
    height: 5px;
    background: var(--orange);
    border-radius: 50%;
    flex-shrink: 0;
}

.us-strip-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.12);
}

/* ===== INDUSTRY CARD ILLUSTRATION ===== */
.industry-card {
    position: relative;
    overflow: hidden;
    padding-bottom: 24px;
}

.industry-illustration {
    width: 100%;
    height: 120px;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.industry-illustration svg {
    width: 100px;
    height: auto;
}

/* Diverse professional context tag */
.industry-context-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 600;
    color: var(--orange);
    background: rgba(255, 92, 0, 0.08);
    padding: 3px 8px;
    border-radius: 100px;
    margin-top: 6px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 120px;
    }

    .hero-visual {
        display: none;
    }

    .what-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        margin-top: 20px;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .outcomes-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-inner {
        grid-template-columns: 1fr;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .lang-toggle {
        display: none;
    }
}

@media (max-width: 640px) {

    .proof-logo-box {


        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .us-market-strip {
        display: none;
    }

    .nav-inner {
        padding: 0 20px;
    }

    .hero {
        padding: 60px 20px 60px;
    }

    .section {
        padding: 64px 20px;
    }

    .section-full {
        padding: 64px 20px;
    }

    /* .why-inner,
    .industries-inner,
    .proof-inner,
    .final-cta-inner,
    .contact-inner,
    .footer-inner {
        padding-left: 0;
        padding-right: 0;
    } */

    .industries-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .outcomes-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 28px 20px;
    }

    .dc-stats {
        grid-template-columns: 1fr 1fr;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        justify-content: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 24px;
    }
}

/* ===== HAMBURGER + MOBILE MENU ===== */
.hamburger {
    /* display: none; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 10px;
    transition: background 0.2s;
    flex-shrink: 0;
}

.hamburger:hover {
    background: rgba(11, 27, 43, 0.06);
}

.hamburger .bar {
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* X state */
.hamburger.open .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.mobile-menu {
    display: block;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid rgba(11, 27, 43, 0.08);
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 8px 32px rgba(11, 27, 43, 0.12);
    visibility: hidden;
}

.mobile-menu.open {
    max-height: 700px;
    opacity: 1;
    pointer-events: all;
    visibility: visible;
}

.mobile-menu-inner {
    padding: 24px 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid rgba(11, 27, 43, 0.06);
    transition: color 0.2s;
}

.mobile-nav-link:last-of-type {
    border-bottom: none;
}

.mobile-nav-link:hover {
    color: var(--orange);
}

.mobile-nav-arrow {
    font-size: 16px;
    color: var(--gray);
    transition: transform 0.2s, color 0.2s;
}

.mobile-nav-link:hover .mobile-nav-arrow {
    transform: translateX(4px);
    color: var(--orange);
}

.mobile-menu-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(11, 27, 43, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-lang-row {
    display: flex;
    gap: 8px;
}

.mobile-lang-btn {
    flex: 1;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    padding: 12px;
    border-radius: 12px;
    border: 1.5px solid var(--gray-light);
    background: white;
    color: var(--navy);
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
}

.mobile-lang-btn.active {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}

.mobile-cta-btn {
    display: block;
    width: 100%;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: white;
    background: var(--orange);
    border: none;
    padding: 16px;
    border-radius: 14px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
    letter-spacing: 0.3px;
}

.mobile-cta-btn:hover {
    background: var(--orange-light);
    transform: translateY(-1px);
}

/* Overlay behind mobile menu */
.mobile-overlay {
    display: block;
    position: fixed;
    inset: 0;
    top: 72px;
    background: rgba(11, 27, 43, 0.3);
    z-index: 998;
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    visibility: hidden;
}

.mobile-overlay.open {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
}

@media (min-width: 1025px) {
    .hamburger {
        display: none !important;
    }

    .lang-toggle {
        display: flex !important;
    }

    .nav-cta {
        display: inline-flex !important;
    }
}


.hero-sub {
    word-break: normal;
    overflow-wrap: break-word;
    /* hyphens: auto; */
}

.section-title {
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: auto;
}

.feature-text h3 {
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Industry cards: name line wraps at 2 lines max, stays centered */
.industry-name {
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: auto;
    min-height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Outcome cards: title stays within card bounds */
.outcome-title {
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Why-matters problem text */
.problem-text {
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Solution box headline */
.solution-headline {
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Nav links: prevent overflow on very long FR label */
.nav-links a {
    white-space: nowrap;
}

/* Form labels */
.form-label {
    word-break: normal;
    overflow-wrap: break-word;
}

/* Buttons: flex-wrap so FR text doesn't clip */
.btn-primary,
.btn-secondary,
.btn-outline-white {
    white-space: normal;
    text-align: center;
}

/* Footer tagline */
.footer-tagline {
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* ===== US MARKET TRUST BAR ===== */
.us-trust-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid rgba(11, 27, 43, 0.08);
    flex-wrap: wrap;
}

.us-trust-label {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--gray);
    white-space: nowrap;
}

.us-trust-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.us-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
    background: var(--off-white);
    border: 1px solid var(--gray-light);
    padding: 6px 14px;
    border-radius: 100px;
}

/* ===== INDUSTRY CARD DESCRIPTION ===== */
.industry-desc {
    font-size: 12px;
    line-height: 1.55;
    color: var(--gray);
    margin-top: 8px;
    word-break: normal;
    overflow-wrap: break-word;
    /* hyphens: auto; */
}

.d-none {
    display: none;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.dash_img {
    display: flex;
    flex-direction: column;
    height: 100%;
    object-fit: cover;
}

.dash_img img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    object-fit: cover;
}
.lang-img{
    width: 100%;
  
    display: none;
}

/* Default Image */
.img-en{
    display: block;
}

/*.dash_img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*   background-image: url(../img/Hero-Image-English.png);*/
/*    background-position: center;*/
/*    background-repeat: no-repeat;*/
/*    background-size: cover;*/
/*    border-radius: 4px;*/
/*}*/