/*
 * Abra Global Media Solutions — Full Redesign Stylesheet
 * Modern · Parallax · Interactive · Corporate Premium
 */

/* ─────────────── TOKENS ─────────────── */
:root {
    --navy:        #07182e;
    --navy-2:      #0d2440;
    --navy-3:      #122d4f;
    --teal:        #1a8fa0;
    --teal-2:      #22b5cc;
    --teal-glow:   rgba(26,143,160,0.18);
    --gold:        #c8a951;
    --white:       #ffffff;
    --off:         #f5f6f8;
    --g100:        #eef0f4;
    --g200:        #d6dae4;
    --g400:        #96a0b5;
    --g600:        #58647a;
    --g800:        #2c3447;
    --text:        #1a2030;
    --text-soft:   #596070;

    --ff-display:  'Cormorant Garamond', Georgia, serif;
    --ff-body:     'Outfit', system-ui, sans-serif;

    --ease:        cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out:    cubic-bezier(0, 0, 0.2, 1);
    --t:           0.3s var(--ease);
    --r:           8px;
    --r-lg:        16px;
    --sh:          0 4px 20px rgba(7,24,46,0.10);
    --sh-lg:       0 16px 56px rgba(7,24,46,0.18);
    --w:           1200px;
}

/* ─────────────── RESET ─────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--ff-body);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

.container {
    max-width: var(--w);
    margin: 0 auto;
    padding: 0 32px;
}
.section { padding: 120px 0; }

/* ─────────────── TYPE ─────────────── */
.eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--teal);
    display: block;
    margin-bottom: 14px;
}
.eyebrow.light { color: var(--teal-2); }

.section-title {
    font-family: var(--ff-display);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 22px;
}
.section-title.light { color: #fff; }
.section-title em { font-style: italic; color: var(--teal-2); }

.section-sub {
    font-size: 1.05rem;
    color: var(--text-soft);
    max-width: 600px;
    line-height: 1.8;
}
.section-header {
    text-align: center;
    margin-bottom: 72px;
}
.section-header .section-sub { margin: 0 auto; }

/* ─────────────── BUTTONS ─────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: var(--r);
    font-family: var(--ff-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--t);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.12);
    opacity: 0;
    transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
}
.btn-primary:hover {
    background: var(--teal-2);
    border-color: var(--teal-2);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(26,143,160,0.35);
}
.btn-ghost {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: rgba(255,255,255,0.5);
    backdrop-filter: blur(6px);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.2);
    border-color: #fff;
}
.btn-outline-dark {
    background: transparent;
    color: var(--navy);
    border-color: var(--g200);
}
.btn-outline-dark:hover {
    background: var(--g100);
    border-color: var(--navy);
}
.btn-whatsapp {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
}
.btn-whatsapp:hover {
    background: #1db954;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37,211,102,0.3);
}
.btn-sm  { padding: 11px 22px; font-size: 0.85rem; }
.btn-lg  { padding: 17px 40px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ─────────────── NAVBAR ─────────────── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 900;
    padding: 20px 0;
    transition: background 0.4s var(--ease), padding 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(14px);
    padding: 12px 0;
    box-shadow: 0 1px 0 var(--g200);
}
.nav-container {
    max-width: var(--w);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.nav-logo {
    display: flex;
    align-items: baseline;
    gap: 7px;
    flex-shrink: 0;
}
.logo-mark {
    font-family: var(--ff-body);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--teal);
    letter-spacing: 0.04em;
    transition: var(--t);
}
.logo-full {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--white);
    transition: color 0.4s;
}
.navbar.scrolled .logo-full { color: var(--g600); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link {
    font-size: 0.86rem;
    font-weight: 500;
    padding: 8px 13px;
    border-radius: var(--r);
    color: rgba(255,255,255,0.85);
    transition: var(--t);
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.12); }
.nav-link.active { color: #fff; background: rgba(255,255,255,0.15); }
.navbar.scrolled .nav-link { color: var(--g600); }
.navbar.scrolled .nav-link:hover { color: var(--navy); background: var(--g100); }
.navbar.scrolled .nav-link.active { color: var(--navy); background: var(--g100); }
.nav-link.nav-cta {
    background: var(--teal);
    color: #fff !important;
    margin-left: 10px;
}
.nav-link.nav-cta:hover {
    background: var(--teal-2);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(26,143,160,0.3);
}
.navbar.scrolled .nav-link.nav-cta { color: #fff !important; }

/* Progress bar */
.nav-progress {
    position: absolute;
    bottom: 0; left: 0;
    height: 2px;
    background: var(--teal);
    width: 0%;
    transition: width 0.1s linear;
    opacity: 0;
}
.navbar.scrolled .nav-progress { opacity: 1; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px; height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: var(--r);
}
.hamburger span {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    transition: var(--t);
}
.navbar.scrolled .hamburger span { background: var(--navy); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────── HERO ─────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}
.hero-parallax {
    position: absolute;
    inset: -20%;
    background-size: cover;
    background-position: center;
    opacity: 0.22;
    will-change: transform;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7,24,46,0.92) 0%, rgba(13,36,64,0.7) 60%, rgba(26,143,160,0.15) 100%);
}
/* Decorative floating shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.s1 {
    width: 500px; height: 500px;
    border: 1px solid rgba(26,143,160,0.2);
    top: -100px; right: -100px;
    animation: rotate 40s linear infinite;
}
.s2 {
    width: 280px; height: 280px;
    border: 1px solid rgba(255,255,255,0.06);
    bottom: 80px; right: 200px;
    animation: rotate 28s linear infinite reverse;
}
.s3 {
    width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(26,143,160,0.25), transparent);
    top: 30%; left: 55%;
    animation: pulse 6s ease-in-out infinite;
}
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.4); opacity: 1; }
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--w);
    margin: 0 auto;
    padding: 120px 32px 80px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 60px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal-2);
    margin-bottom: 28px;
}
.badge-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--teal-2);
    animation: pulse 2.5s ease-in-out infinite;
}
.hero-headline {
    font-family: var(--ff-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}
.hero-headline em {
    font-style: italic;
    color: var(--teal-2);
}
.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    max-width: 540px;
    line-height: 1.8;
    margin-bottom: 44px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Floating stat card */
.hero-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--r-lg);
    padding: 30px;
    min-width: 260px;
    flex-shrink: 0;
    align-self: end;
}
.hc-row {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 20px;
}
.hc-stat { flex: 1; text-align: center; }
.hc-num {
    display: inline;
    font-family: var(--ff-display);
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.hc-num-suffix {
    font-family: var(--ff-display);
    font-size: 1.6rem;
    color: var(--teal-2);
    font-weight: 600;
}
.hc-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-top: 6px;
}
.hc-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.12);
    margin: 0 4px;
}
.hc-footer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 16px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    display: flex;
    align-items: center;
    gap: 8px;
}
.hc-footer i { color: var(--teal-2); }

/* Scroll cue */
.hero-scroll {
    position: absolute;
    bottom: 36px; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.35);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: var(--t);
}
.hero-scroll:hover { color: var(--teal-2); }
.scroll-wheel {
    width: 22px; height: 36px;
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 11px;
    position: relative;
}
.scroll-wheel::after {
    content: '';
    position: absolute;
    top: 5px; left: 50%;
    transform: translateX(-50%);
    width: 4px; height: 4px;
    background: var(--teal-2);
    border-radius: 50%;
    animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
    0%   { top: 5px; opacity: 1; }
    100% { top: 22px; opacity: 0; }
}

/* ─────────────── TICKER ─────────────── */
.ticker-wrap {
    background: var(--teal);
    overflow: hidden;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.ticker-track {
    display: flex;
    align-items: center;
    gap: 28px;
    white-space: nowrap;
    animation: ticker 40s linear infinite;
    width: max-content;
}
.ticker-track span {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    flex-shrink: 0;
}
.ticker-dot { color: rgba(255,255,255,0.4) !important; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─────────────── ABOUT ─────────────── */
.about-section { background: var(--white); overflow: hidden; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

/* Image stack */
.about-images {
    position: relative;
    height: 600px;
}
.img-main {
    position: absolute;
    inset: 0 0 80px 0;
    border-radius: var(--r-lg);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    box-shadow: var(--sh-lg);
}
.img-accent {
    position: absolute;
    bottom: 0; right: -30px;
    width: 58%;
    height: 220px;
    border-radius: var(--r-lg);
    background-size: cover;
    background-position: center top;
    box-shadow: var(--sh-lg);
    border: 4px solid var(--white);
}
.img-badge {
    position: absolute;
    top: 40px; left: -20px;
    background: var(--teal);
    color: #fff;
    border-radius: var(--r-lg);
    padding: 22px 24px;
    box-shadow: var(--sh-lg);
    z-index: 2;
}
.ib-num {
    display: block;
    font-family: var(--ff-display);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}
.ib-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    opacity: 0.85;
    line-height: 1.4;
}

/* MVV row below about grid */
.mvv-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 70px;
}
.mvv-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 34px 30px;
    background: var(--off);
    border: 1px solid var(--g100);
    border-radius: var(--r-lg);
    transition: var(--t);
}
.mvv-card:hover {
    background: var(--white);
    box-shadow: var(--sh-lg);
    border-color: transparent;
    transform: translateY(-4px);
}
.mvv-icon-wrap {
    width: 46px; height: 46px;
    background: var(--teal);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.mvv-body h3 {
    font-family: var(--ff-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}
.mvv-body p {
    font-size: 0.9rem;
    color: var(--text-soft);
    line-height: 1.75;
}

/* About text */
.about-lead {
    font-family: var(--ff-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.45;
    margin-bottom: 18px;
}
.about-body {
    font-size: 1rem;
    color: var(--text-soft);
    line-height: 1.85;
    margin-bottom: 28px;
}

/* Ensure about-text is never clipped by overflow */
.about-text { overflow: visible; }

/* Mission/Vision/Values tabs */
.mvv-tabs { margin-bottom: 36px; }
.mvv-tab-btns {
    display: flex;
    gap: 4px;
    margin-bottom: 0;
    border-bottom: 2px solid var(--g100);
    padding-bottom: 0;
}
.tab-btn {
    font-family: var(--ff-body);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 20px;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--g400);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: var(--t);
    border-radius: var(--r) var(--r) 0 0;
}
.tab-btn:hover { color: var(--navy); }
.tab-btn.active { color: var(--teal); border-bottom-color: var(--teal); }

.mvv-tab-content { padding: 24px 0 0; }
.tab-panel { display: none; animation: fadeIn 0.3s var(--ease); }
.tab-panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.tab-icon {
    font-size: 1.4rem;
    color: var(--teal);
    margin-bottom: 14px;
}
.tab-panel p {
    font-size: 0.95rem;
    color: var(--text-soft);
    line-height: 1.8;
}
.values-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.values-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-soft);
}
.values-list i { color: var(--teal); font-size: 0.85rem; }

/* ─────────────── WHY US — PARALLAX ─────────────── */
.why-section {
    position: relative;
    overflow: hidden;
    padding: 130px 0;
}
.why-parallax {
    position: absolute;
    inset: -25%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}
.why-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7,24,46,0.93) 0%, rgba(7,24,46,0.80) 100%);
}
.why-inner { position: relative; z-index: 2; }
.why-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}
.why-lead {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
}
.why-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.why-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    backdrop-filter: blur(6px);
    border-radius: var(--r-lg);
    padding: 36px 26px;
    transition: var(--t);
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,143,160,0.12), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(26,143,160,0.4);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.why-card:hover::before { opacity: 1; }
.wc-num {
    font-family: var(--ff-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(255,255,255,0.05);
    line-height: 1;
    position: absolute;
    top: 16px; right: 16px;
}
.why-card i {
    font-size: 1.8rem;
    color: var(--teal-2);
    margin-bottom: 18px;
    display: block;
    position: relative;
}
.why-card h4 {
    font-family: var(--ff-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
    position: relative;
}
.why-card p {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    position: relative;
}

/* ─────────────── SERVICES ─────────────── */
.services-section { background: var(--off); }
.services-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 64px;
}
.sh-right {
    max-width: 440px;
    font-size: 1rem;
    color: var(--text-soft);
    line-height: 1.8;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.svc-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 38px 34px;
    border: 1px solid var(--g100);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.25s;
    cursor: default;
}
.svc-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--teal-2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease-out);
}
.svc-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sh-lg);
    border-color: transparent;
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}
.svc-num {
    font-family: var(--ff-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--g200);
    line-height: 1;
    transition: color 0.3s;
}
.svc-card:hover .svc-num { color: var(--teal); }
.svc-icon {
    width: 50px; height: 50px;
    background: rgba(26,143,160,0.1);
    color: var(--teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--t);
}
.svc-card:hover .svc-icon {
    background: var(--teal);
    color: #fff;
    transform: scale(1.08);
}
.svc-card h3 {
    font-family: var(--ff-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.3;
}
.svc-card p {
    font-size: 0.875rem;
    color: var(--text-soft);
    line-height: 1.78;
}
.svc-hover-line {
    height: 1px;
    background: var(--g100);
    margin-top: 24px;
}
.services-cta {
    text-align: center;
    margin-top: 60px;
}

/* ─────────────── EXPERTISE — PARALLAX ─────────────── */
.expertise-section {
    position: relative;
    overflow: hidden;
    padding: 130px 0;
}
.expertise-parallax {
    position: absolute;
    inset: -25%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}
.expertise-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(7,24,46,0.96) 0%, rgba(13,36,64,0.88) 100%);
}
.expertise-inner { position: relative; z-index: 2; }
.expertise-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}
.expertise-lead {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
}
.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}
.etag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: default;
    transition: var(--t);
    opacity: 0;
    transform: translateY(20px);
}
.etag.visible {
    opacity: 1;
    transform: translateY(0);
}
.etag:hover {
    background: rgba(26,143,160,0.25);
    border-color: var(--teal-2);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(26,143,160,0.2);
}
.etag i { color: var(--teal-2); font-size: 0.9rem; }

/* ─────────────── CLIENTS ─────────────── */
.clients-section { background: var(--white); }
.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.client-card {
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--g100);
    transition: var(--t);
    box-shadow: var(--sh);
}
.client-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
    border-color: transparent;
}
.cc-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s var(--ease);
    overflow: hidden;
}
.client-card:hover .cc-img { transform: scale(1.06); }
.cc-body {
    padding: 30px 26px;
}
.cc-icon {
    width: 48px; height: 48px;
    background: var(--navy);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 16px;
    transition: var(--t);
}
.client-card:hover .cc-icon { background: var(--teal); }
.cc-body h3 {
    font-family: var(--ff-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}
.cc-body p {
    font-size: 0.875rem;
    color: var(--text-soft);
    line-height: 1.7;
}

/* ─────────────── CTA BAND ─────────────── */
.cta-band {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}
.cta-band-parallax {
    position: absolute;
    inset: -25%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}
.cta-band-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7,24,46,0.92), rgba(26,143,160,0.5));
}
.cta-band-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}
.cta-band-inner h2 {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}
.cta-band-inner p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* ─────────────── CONTACT ─────────────── */
.contact-section { background: var(--off); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-intro {
    font-size: 1rem;
    color: var(--text-soft);
    line-height: 1.85;
    margin-bottom: 44px;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.cd-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 22px;
    background: var(--white);
    border-radius: var(--r);
    border: 1px solid var(--g100);
    transition: var(--t);
}
a.cd-row:hover {
    border-color: var(--teal);
    transform: translateX(4px);
    box-shadow: var(--sh);
}
.cd-icon {
    width: 42px; height: 42px;
    background: var(--teal);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}
.cd-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--g400);
    margin-bottom: 3px;
}
.cd-val {
    display: block;
    font-size: 0.92rem;
    color: var(--navy);
    font-weight: 500;
    line-height: 1.5;
}

.contact-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 50px 44px;
    box-shadow: var(--sh-lg);
    border: 1px solid var(--g100);
}
.contact-card h3 {
    font-family: var(--ff-display);
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}
.contact-card > p {
    font-size: 0.9rem;
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 30px;
}
.contact-actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.contact-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--g400);
    border-top: 1px solid var(--g100);
    padding-top: 18px;
}
.contact-note i { color: var(--teal); }

/* ─────────────── FOOTER ─────────────── */
.footer {
    background: var(--navy);
    color: #fff;
    padding: 90px 0 0;
}
.footer-container {
    max-width: var(--w);
    margin: 0 auto;
    padding: 0 32px;
}
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin-bottom: 18px;
}
.footer-logo .logo-full { color: rgba(255,255,255,0.45); }
.footer-brand > p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.75;
    margin-bottom: 24px;
}
.footer-contact-quick { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-quick a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.84rem;
    color: rgba(255,255,255,0.5);
    transition: var(--t);
}
.footer-contact-quick a:hover { color: var(--teal-2); }
.footer-contact-quick i { color: var(--teal); font-size: 0.85rem; }
.footer-nav-group h4 {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 20px;
}
.footer-nav-group ul li { margin-bottom: 10px; }
.footer-nav-group ul li a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    transition: var(--t);
}
.footer-nav-group ul li a:hover { color: #fff; padding-left: 5px; }
.footer-nav-group address {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.85;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-tagline { font-style: italic; }

/* ─────────────── SCROLL ANIMATIONS ─────────────── */
/* Safe approach: content always visible. Animation fades/slides IN only, never hides. */
.reveal, .reveal-left, .reveal-right, .reveal-hero {
    animation-fill-mode: both;
    animation-duration: 0.75s;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-play-state: paused;
}
.reveal.visible       { animation-name: slideUp;    animation-play-state: running; }
.reveal-left.visible  { animation-name: slideRight; animation-play-state: running; }
.reveal-right.visible { animation-name: slideLeft;  animation-play-state: running; }
.reveal-hero.show     { animation-name: slideUp;    animation-play-state: running; }

@keyframes slideUp    { from { opacity: 0.3; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes slideRight { from { opacity: 0.3; transform: translateX(-40px); } to { opacity: 1; transform: none; } }
@keyframes slideLeft  { from { opacity: 0.3; transform: translateX(40px);  } to { opacity: 1; transform: none; } }

.delay-1 { animation-delay: 0.12s !important; }
.delay-2 { animation-delay: 0.24s !important; }
.delay-3 { animation-delay: 0.36s !important; }
.reveal-hero.delay-1 { animation-delay: 0.2s; }
.reveal-hero.delay-2 { animation-delay: 0.4s; }
.reveal-hero.delay-3 { animation-delay: 0.6s; }

/* ─────────────── MOBILE NAV ─────────────── */
@media (max-width: 960px) {
    .hamburger { display: flex; }
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 290px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 48px 32px;
        gap: 6px;
        box-shadow: -20px 0 60px rgba(0,0,0,0.18);
        transition: right 0.42s var(--ease);
        z-index: 998;
    }
    .nav-links.open { right: 0; }
    .nav-link { color: var(--g600) !important; width: 100%; padding: 12px 16px; font-size: 1rem; }
    .nav-link:hover { color: var(--navy) !important; background: var(--g100); }
    .nav-link.nav-cta { margin-left: 0; margin-top: 10px; text-align: center; justify-content: center; color: #fff !important; }
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 997;
        backdrop-filter: blur(4px);
    }
    .nav-overlay.open { display: block; }
}

/* ─────────────── RESPONSIVE ─────────────── */
@media (max-width: 1100px) {
    .why-cards { grid-template-columns: repeat(3, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .clients-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: span 2; }
}

@media (max-width: 900px) {
    .section { padding: 90px 0; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-card { min-width: unset; }
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-images { height: 400px; }
    .img-accent { right: 0; }
    .mvv-row { grid-template-columns: 1fr; }
    .services-header { flex-direction: column; align-items: flex-start; }
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .why-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .container { padding: 0 20px; }
    .nav-container { padding: 0 20px; }
    .footer-container { padding: 0 20px; }
    .section { padding: 70px 0; }
    .hero-inner { padding: 100px 20px 60px; }
    .hero-headline { font-size: 2.6rem; }
    .hero-actions { flex-direction: column; }
    .services-grid { grid-template-columns: 1fr; }
    .clients-grid { grid-template-columns: 1fr; }
    .why-cards { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .contact-card { padding: 36px 24px; }
    .expertise-tags { gap: 10px; }
    .hc-num { font-size: 1.9rem; }
}
