:root {
    --royal: #2B4DB0;
    --royal-light: #3A5FD9;
    --royal-dark: #1a3080;
    --royal-glow: rgba(43, 77, 176, 0.4);
    --white: #ffffff;
    --off-white: #f4f6fb;
    --light-blue: #e8eef9;
    --text-dark: #0d1a3a;
    --text-muted: #5a6a8a;
    --grid: rgba(43, 77, 176, 0.07);
}

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

.logo-text {
    font-family: 'Bungee', sans-serif;
    font-size: 34px;
    letter-spacing: 0.08em;
    color: var(--royal);
    line-height: 1;
    animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.brand-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

/* ─── CANVAS BACKGROUND ─── */
#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(43, 77, 176, 0.12);
    transition: box-shadow 0.3s;
}

nav.scrolled {
    box-shadow: 0 4px 30px rgba(43, 77, 176, 0.15);
}

.nav-logo img {
    height: 44px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-menu-toggle {
    display: none;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 6px;
    border: 1px solid rgba(43, 77, 176, 0.2);
    background: var(--white);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 0.18rem;
    flex-direction: column;
}

.nav-menu-toggle span {
    width: 1rem;
    height: 2px;
    border-radius: 2px;
    background: var(--royal-dark);
    display: block;
}

.nav-menu-toggle:hover {
    background: var(--light-blue);
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
}

.language-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50%;
    border: 1px solid rgba(43, 77, 176, 0.2);
    background: var(--white);
    color: var(--royal-dark);
    cursor: pointer;
}

.language-toggle:hover {
    background: var(--light-blue);
}

.language-toggle-icon {
    display: inline-flex;
    width: 1rem;
    height: 1rem;
}

.language-toggle-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.language-switcher label {
    display: none;
}

.language-chooser-popup {
    display: none;
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    min-width: 12.5rem;
    padding: 0.35rem;
    border-radius: 6px;
    border: 1px solid rgba(43, 77, 176, 0.2);
    background: var(--white);
    box-shadow: 0 10px 22px rgba(13, 26, 58, 0.18);
    z-index: 1500;
}

.language-option {
    width: 100%;
    display: block;
    border: none;
    border-radius: 4px;
    background: transparent;
    color: var(--text-dark);
    text-align: left;
    white-space: nowrap;
    font-family: 'Exo 2', sans-serif;
    font-size: 0.82rem;
    padding: 0.45rem 0.5rem;
    cursor: pointer;
}

.language-option:hover {
    background: var(--light-blue);
}

.language-option.is-active {
    font-weight: 700;
    color: var(--royal-dark);
}

.language-switcher.is-ready .language-chooser-popup {
    display: none;
}

.language-switcher.is-ready.is-open .language-chooser-popup {
    display: block;
}

.nav-links a {
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

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

.nav-links a:hover {
    color: var(--royal);
}

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

.nav-cta {
    background: var(--royal);
    color: #fff !important;
    padding: 0.5rem 1.4rem;
    border-radius: 4px;
    transition: background 0.3s, transform 0.2s !important;
}

.nav-cta:hover {
    background: var(--royal-light) !important;
    transform: translateY(-1px);
}

.nav-cta::after {
    display: none !important;
}

/* ─── HERO ─── */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0d1a3a 0%, #1a3080 40%, #2B4DB0 70%, #3A5FD9 100%);
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(var(--grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 8%;
    padding-top: 70px;
    max-width: 900px;
}

.hero-eyebrow {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 2.5rem;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 9vw, 8rem);
    line-height: 0.95;
    color: #fff;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: #7aadff;
}

.hero-sub {
    font-size: 1.15rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 0.85rem 2.2rem;
    background: #fff;
    color: var(--royal-dark);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.btn-ghost {
    padding: 0.85rem 2.2rem;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
    display: inline-block;
}

.btn-ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: 'Share Tech Mono', monospace;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.4);
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    transform: rotate(45deg);
    animation: scrollBounce 1.8s infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: rotate(45deg) translateY(0);
    }

    50% {
        transform: rotate(45deg) translateY(6px);
    }
}

/* ─── STATS BAND ─── */
.stats-band {
    background: var(--royal-dark);
    padding: 2.5rem 8%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: #fff;
    line-height: 1;
}

.stat-num span {
    color: #7aadff;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.3rem;
}

/* ─── SECTION BASE ─── */
section {
    padding: 7rem 8%;
}

.section-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--royal);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.section-label::before {
    content: '';
    display: block;
    width: 2rem;
    height: 2px;
    background: var(--royal);
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    letter-spacing: 0.02em;
}

.section-intro {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 580px;
    margin-bottom: 4rem;
    font-weight: 300;
}

/* ─── SERVICES ─── */
#services {
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(43, 77, 176, 0.1);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--royal);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.35s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(43, 77, 176, 0.12);
    border-color: var(--royal-light);
}

.service-card:hover::before {
    transform: scaleY(1);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: var(--light-blue);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: var(--royal);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-name {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    letter-spacing: 0.02em;
}

.service-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.75;
    font-weight: 300;
}

.service-tag {
    display: inline-block;
    margin-top: 1.2rem;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--royal);
    background: var(--light-blue);
    padding: 0.25rem 0.7rem;
    border-radius: 3px;
}

.service-more {
    display: inline-block;
    margin-top: 1.1rem;
    color: var(--royal);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
}

.service-more:hover {
    text-decoration: underline;
}

/* ─── WHY US ─── */
#why {
    background: #fff;
}

.why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-visual {
    position: relative;
    height: 480px;
}

.why-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(43, 77, 176, 0.15);
}

.wc1 {
    width: 420px;
    height: 420px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotateSlow 30s linear infinite;
}

.wc2 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotateSlow 20s linear infinite reverse;
}

.wc3 {
    width: 180px;
    height: 180px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--light-blue);
    border: none;
}

.why-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.why-center-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--royal);
    line-height: 1;
}

.why-center-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.why-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--royal);
    border-radius: 50%;
    top: 0;
    left: 50%;
    margin-left: -6px;
}

@keyframes rotateSlow {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-point {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.why-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: rgba(43, 77, 176, 0.15);
    line-height: 1;
    flex-shrink: 0;
    width: 2.5rem;
}

.why-point-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.why-point-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
}

/* ─── APPROACH ─── */
#approach {
    background: var(--off-white);
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    position: relative;
}

.approach-steps::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--royal), var(--royal-light));
    z-index: 0;
}

.approach-step {
    padding: 4rem 1.5rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--royal);
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 0 0 0 4px var(--off-white), 0 0 0 6px var(--royal);
    transition: transform 0.3s;
}

.approach-step:hover .step-num {
    transform: scale(1.1);
}

.step-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
}

/* ─── TRAINING ─── */
#training {
    background: linear-gradient(135deg, var(--royal-dark) 0%, var(--royal) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

#training .section-label {
    color: #7aadff;
}

#training .section-label::before {
    background: #7aadff;
}

#training .section-title {
    color: #fff;
}

#training .section-intro {
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
}

.training-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.training-card {
    background: rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 2.5rem;
    transition: background 0.3s, transform 0.3s;
}

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

.training-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

.training-card-title {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.training-card-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    font-weight: 300;
}

.training-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.training-feat {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.12);
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
}

.training-more {
    display: inline-block;
    margin-top: 1.25rem;
    color: #fff;
    font-weight: 700;
    font-size: 0.84rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
}

.training-more:hover {
    text-decoration: underline;
}

.training-bg-pattern {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    opacity: 0.05;
    border: 80px solid #fff;
    border-radius: 50%;
}

.training-bg-pattern2 {
    position: absolute;
    right: 100px;
    top: 20%;
    width: 200px;
    height: 200px;
    opacity: 0.04;
    border: 40px solid #fff;
    border-radius: 50%;
}

/* ─── CONTACT ─── */
#contact {
    background: #fff;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.contact-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-wrap svg {
    width: 20px;
    height: 20px;
    stroke: var(--royal);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-item-label {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-item-value {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.contact-item-value a {
    color: var(--royal);
    text-decoration: none;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-feedback {
    border-radius: 6px;
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 500;
}

.form-feedback-success {
    background: rgba(43, 176, 102, 0.1);
    color: #1e7a49;
    border: 1px solid rgba(43, 176, 102, 0.25);
}

.form-feedback-error {
    background: rgba(176, 43, 43, 0.1);
    color: #8a1f1f;
    border: 1px solid rgba(176, 43, 43, 0.25);
}

.form-feedback-debug {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.78rem;
    line-height: 1.55;
    color: #8a1f1f;
    background: rgba(176, 43, 43, 0.06);
    border: 1px dashed rgba(176, 43, 43, 0.32);
    border-radius: 6px;
    padding: 0.7rem 0.85rem;
    word-break: break-word;
}

.hidden-field {
    display: none !important;
}

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

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

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.85rem 1rem;
    border: 2px solid rgba(43, 77, 176, 0.1);
    border-radius: 6px;
    font-family: 'Exo 2', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--off-white);
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--royal);
    background: #fff;
}

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

.btn-submit {
    padding: 1rem 2.5rem;
    background: var(--royal);
    color: #fff;
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    align-self: flex-start;
}

.btn-submit:hover {
    background: var(--royal-light);
    transform: translateY(-2px);
}

/* ─── FOOTER ─── */
footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.5);
    padding: 3rem 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-logo img {
    height: 36px;
    opacity: 0.8;
}

.footer-copy {
    font-size: 0.82rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.whatsapp-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
    z-index: 2100;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-float:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
}

.whatsapp-float svg {
    width: 1.9rem;
    height: 1.9rem;
    fill: currentColor;
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ─── PARALLAX SHAPES ─── */
.parallax-shape {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(60px);
}

.ps1 {
    width: 400px;
    height: 400px;
    background: rgba(58, 95, 217, 0.2);
    top: -100px;
    right: -100px;
}

.ps2 {
    width: 250px;
    height: 250px;
    background: rgba(122, 173, 255, 0.15);
    bottom: 100px;
    left: 10%;
}

/* ─── TECH TICKER ─── */
.ticker-wrap {
    background: var(--light-blue);
    overflow: hidden;
    padding: 0.8rem 0;
    border-top: 1px solid rgba(43, 77, 176, 0.1);
    border-bottom: 1px solid rgba(43, 77, 176, 0.1);
}

.ticker {
    display: flex;
    gap: 4rem;
    animation: ticker 25s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.ticker-item {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--royal);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.ticker-item::before {
    content: '◆';
    font-size: 0.5rem;
}

.service-detail-hero {
    background: linear-gradient(135deg, #0d1a3a 0%, #1a3080 45%, #2B4DB0 100%);
    color: #fff;
    padding-top: 10rem;
    padding-bottom: 5.5rem;
}

.service-detail-hero .section-label {
    color: #7aadff;
}

.service-detail-hero .section-label::before {
    background: #7aadff;
}

.service-detail-hero .section-title {
    color: #fff;
}

.service-detail-hero .section-intro {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 760px;
}

.service-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.service-detail-content {
    background: var(--off-white);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 1.8rem;
}

.detail-card {
    background: #fff;
    border: 1px solid rgba(43, 77, 176, 0.1);
    border-radius: 8px;
    padding: 2rem;
}

.detail-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.9rem;
}

.detail-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.detail-list li {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
    padding-left: 1.1rem;
    position: relative;
}

.detail-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    top: 0.02rem;
    color: var(--royal);
    font-size: 0.62rem;
}

.detail-meta {
    margin-top: 1.3rem;
    font-size: 0.86rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.detail-cta-box {
    margin-top: 2rem;
    padding: 1.3rem;
    border-radius: 8px;
    background: var(--light-blue);
}

.detail-cta-box p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media(max-width:900px) {

    .why-layout,
    .contact-layout,
    .training-grid,
    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .why-visual {
        display: none;
    }

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

    .approach-steps::before {
        display: none;
    }
}

@media(max-width:820px) {
    nav {
        padding: 0 5%;
        gap: 0.65rem;
    }

    .brand-link {
        order: 1;
        margin-right: auto;
    }

    .language-switcher {
        order: 2;
    }

    .nav-menu-toggle {
        display: inline-flex;
        order: 3;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 0.55rem);
        right: 5%;
        flex-direction: column;
        gap: 0.2rem;
        min-width: 13.5rem;
        padding: 0.45rem;
        border: 1px solid rgba(43, 77, 176, 0.2);
        border-radius: 8px;
        background: var(--white);
        box-shadow: 0 10px 26px rgba(13, 26, 58, 0.18);
        z-index: 1500;
    }

    nav.is-menu-open .nav-links {
        display: flex;
    }

    .nav-links a {
        display: block;
        padding: 0.5rem 0.6rem;
        border-radius: 4px;
        letter-spacing: 0.06em;
    }

    .nav-links a:hover {
        background: var(--light-blue);
    }

    .nav-links .nav-cta {
        padding: 0.6rem 0.8rem;
        margin-top: 0.15rem;
        text-align: center;
    }

    section {
        padding: 5rem 6%;
    }

    footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.7rem;
        width: 100%;
    }

    .whatsapp-float {
        right: 0.9rem;
        bottom: 0.9rem;
        width: 3.2rem;
        height: 3.2rem;
    }

    .whatsapp-float svg {
        width: 1.7rem;
        height: 1.7rem;
    }

}

.delay-0 {
    transition-delay: 0s;
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-15 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.mb-2rem {
    margin-bottom: 2rem;
}

.training-cta-wrap {
    text-align: center;
    margin-top: 3rem;
}

.training-cta-link {
    display: inline-block;
}

.contact-intro {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 3rem;
}

.contact-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 2200;
}

.contact-modal.is-open {
    display: block;
}

.contact-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(13, 26, 58, 0.65);
}

.contact-modal-dialog {
    position: relative;
    width: min(760px, calc(100% - 2rem));
    max-height: calc(100vh - 3rem);
    overflow-y: auto;
    margin: 1.5rem auto;
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(43, 77, 176, 0.14);
    padding: 2rem;
    box-shadow: 0 25px 70px rgba(13, 26, 58, 0.28);
}

.contact-modal-dialog .section-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    margin-bottom: 1.5rem;
}

.contact-modal-close {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    width: 2rem;
    height: 2rem;
    border: none;
    border-radius: 50%;
    background: var(--light-blue);
    color: var(--royal-dark);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
}

.contact-modal-close:hover {
    background: #d8e4fa;
}

@media(max-width:600px) {
    .contact-modal-dialog {
        padding: 1.35rem 1rem;
        margin: 0.8rem auto;
        max-height: calc(100vh - 1.6rem);
    }
}