/* ================================================================
   AFYACODE VENTURES - styles.css
   All classes prefixed with "acv-" for uniqueness
   ================================================================ */

/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Nunito:wght@400;500;600;700;800;900&display=swap');

/* ===== ROOT VARIABLES ===== */
:root {
    --acv-primary:        #2a9d8f;
    --acv-primary-dark:   #21867a;
    --acv-primary-light:  #4bb5a7;
    --acv-accent:         #e76f51;
    --acv-dark:           #0f1923;
    --acv-dark-2:         #1a2635;
    --acv-text:           #2d3a45;
    --acv-text-muted:     #6b7c8d;
    --acv-light:          #f4f7f6;
    --acv-white:          #ffffff;
    --acv-border:         #dde5e3;
    --acv-card-bg:        #ffffff;

    --acv-shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
    --acv-shadow-md:  0 6px 24px rgba(0,0,0,0.10);
    --acv-shadow-lg:  0 12px 48px rgba(0,0,0,0.14);
    --acv-shadow-glow: 0 8px 32px rgba(42,157,143,0.25);

    --acv-radius-sm:  8px;
    --acv-radius-md:  14px;
    --acv-radius-lg:  22px;
    --acv-radius-xl:  32px;
    --acv-radius-pill: 999px;

    --acv-ease:       cubic-bezier(0.22, 1, 0.36, 1);
    --acv-trans:      0.35s var(--acv-ease);
    --acv-trans-fast: 0.18s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--acv-text);
    background: var(--acv-light);
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    line-height: 1.15;
    color: var(--acv-dark);
}

a { text-decoration: none; color: inherit; transition: var(--acv-trans-fast); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== UTILITIES ===== */
.acv-container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 24px;
}

.acv-center { text-align: center; }

.acv-gradient-text {
    background: linear-gradient(135deg, var(--acv-primary), var(--acv-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.acv-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.75s var(--acv-ease), transform 0.75s var(--acv-ease);
}

.acv-reveal--right {
    transform: translateX(50px);
}

.acv-reveal--left {
    transform: translateX(-50px);
}

.acv-reveal--visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* Staggered children */
.acv-services__grid .acv-reveal:nth-child(1),
.acv-audience__grid .acv-reveal:nth-child(1),
.acv-why__grid .acv-reveal:nth-child(1) { transition-delay: 0.05s; }
.acv-services__grid .acv-reveal:nth-child(2),
.acv-audience__grid .acv-reveal:nth-child(2),
.acv-why__grid .acv-reveal:nth-child(2) { transition-delay: 0.12s; }
.acv-services__grid .acv-reveal:nth-child(3),
.acv-audience__grid .acv-reveal:nth-child(3),
.acv-why__grid .acv-reveal:nth-child(3) { transition-delay: 0.19s; }
.acv-services__grid .acv-reveal:nth-child(4),
.acv-audience__grid .acv-reveal:nth-child(4),
.acv-why__grid .acv-reveal:nth-child(4) { transition-delay: 0.26s; }
.acv-audience__grid .acv-reveal:nth-child(5),
.acv-why__grid .acv-reveal:nth-child(5) { transition-delay: 0.33s; }
.acv-audience__grid .acv-reveal:nth-child(6),
.acv-why__grid .acv-reveal:nth-child(6) { transition-delay: 0.40s; }
.acv-audience__grid .acv-reveal:nth-child(7) { transition-delay: 0.47s; }
.acv-audience__grid .acv-reveal:nth-child(8) { transition-delay: 0.54s; }

/* ===== BUTTONS ===== */
.acv-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--acv-radius-md);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all var(--acv-trans);
    white-space: nowrap;
}

.acv-btn--primary {
    background: linear-gradient(135deg, var(--acv-primary), var(--acv-primary-dark));
    color: var(--acv-white);
    box-shadow: var(--acv-shadow-glow);
}
.acv-btn--primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 40px rgba(42,157,143,0.38);
}

.acv-btn--outline {
    background: transparent;
    color: var(--acv-primary);
    border: 2px solid var(--acv-primary);
}
.acv-btn--outline:hover {
    background: var(--acv-primary);
    color: var(--acv-white);
    transform: translateY(-3px);
}

.acv-btn--cta {
    background: linear-gradient(135deg, var(--acv-primary), var(--acv-primary-dark));
    color: var(--acv-white);
    padding: 11px 26px;
    font-size: 14px;
    border-radius: var(--acv-radius-md);
    box-shadow: 0 4px 16px rgba(42,157,143,0.2);
}
.acv-btn--cta:hover { transform: translateY(-2px); box-shadow: var(--acv-shadow-glow); }

.acv-btn--full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.acv-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 14px 0;
    border-bottom: 1px solid var(--acv-border);
    transition: all var(--acv-trans);
}

.acv-header--scrolled {
    padding: 10px 0;
    box-shadow: var(--acv-shadow-md);
}

.acv-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* LOGO */
.acv-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.acv-logo__img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--acv-primary);
}

.acv-logo__text {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--acv-dark);
    line-height: 1.1;
}

.acv-logo__text span {
    display: block;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--acv-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* NAV */
.acv-nav {
    display: flex;
    gap: 6px;
    align-items: center;
}

.acv-nav__link {
    color: var(--acv-text);
    font-weight: 500;
    font-size: 14.5px;
    padding: 8px 14px;
    border-radius: var(--acv-radius-sm);
    position: relative;
    transition: var(--acv-trans-fast);
}

.acv-nav__link::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 2px;
    background: var(--acv-primary);
    border-radius: 2px;
    transition: width var(--acv-trans);
}

.acv-nav__link:hover,
.acv-nav__link--active { color: var(--acv-primary); }

.acv-nav__link:hover::after,
.acv-nav__link--active::after { width: calc(100% - 28px); }

/* HAMBURGER */
.acv-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.acv-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--acv-dark);
    border-radius: 2px;
    transition: var(--acv-trans);
    transform-origin: center;
}

.acv-hamburger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.acv-hamburger--open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.acv-hamburger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== FLOATING BUTTONS ===== */
.acv-float {
    position: fixed;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    cursor: pointer;
    border: none;
    bottom: 28px;
    box-shadow: var(--acv-shadow-lg);
    transition: all var(--acv-trans);
    font-size: 1.3rem;
}

.acv-float--whatsapp {
    background: #25D366;
    color: #fff;
    left: 28px;
}

.acv-float--chat {
    background: linear-gradient(135deg, var(--acv-primary), var(--acv-primary-dark));
    color: #fff;
    right: 28px;
}

.acv-float:hover {
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.22);
}

/* Float Tooltips */
.acv-float::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--acv-dark);
    color: #fff;
    padding: 6px 13px;
    border-radius: var(--acv-radius-sm);
    font-size: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.acv-float:hover::after { opacity: 1; }

/* Chat greeting bubble */
.acv-chat-bubble {
    position: fixed;
    bottom: 90px;
    right: 22px;
    background: var(--acv-white);
    color: var(--acv-text);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    padding: 11px 30px 11px 14px;
    border-radius: 18px 18px 4px 18px;
    box-shadow: 0 6px 28px rgba(0,0,0,0.14);
    max-width: 220px;
    z-index: 998;
    border: 1px solid rgba(42,157,143,0.18);
    animation: acvBubblePop 0.45s var(--acv-ease) forwards, acvBubbleFloat 3s ease-in-out 0.5s infinite;
    transform-origin: bottom right;
    cursor: pointer;
}

.acv-chat-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 0px solid transparent;
    border-top: 9px solid var(--acv-white);
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.06));
}

.acv-chat-bubble--hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8) translateY(10px);
    transition: all 0.25s ease;
}

.acv-chat-bubble__dismiss {
    position: absolute;
    top: 6px;
    right: 9px;
    font-size: 14px;
    color: var(--acv-text-muted);
    cursor: pointer;
    line-height: 1;
    font-style: normal;
    transition: color var(--acv-trans-fast);
}

.acv-chat-bubble__dismiss:hover { color: var(--acv-accent); }

@keyframes acvBubblePop {
    0%   { opacity: 0; transform: scale(0.7) translateY(12px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes acvBubbleFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-5px); }
}

@media (max-width: 576px) {
    .acv-chat-bubble { right: 12px; max-width: 190px; font-size: 12px; }
}

/* Scroll to top */
.acv-scroll-top {
    position: fixed;
    bottom: 96px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--acv-primary), var(--acv-primary-light));
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--acv-trans);
    z-index: 998;
    box-shadow: var(--acv-shadow-md);
    font-size: 1rem;
}

.acv-scroll-top--visible {
    opacity: 1;
    visibility: visible;
}

.acv-scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--acv-shadow-glow);
}


/* ===== CHATBOT WIDGET ===== */
.acv-chatbot {
    position: fixed;
    bottom: 90px;
    right: 28px;
    width: 360px;
    max-height: 420px;
    background: var(--acv-white);
    border-radius: var(--acv-radius-xl);
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column;
    z-index: 9999;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s var(--acv-ease);
    border: 1px solid rgba(42,157,143,0.15);
}

.acv-chatbot--open {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: all;
}

/* Backdrop (light dim) */
.acv-chatbot__backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.25);
    z-index: 9998;
    backdrop-filter: blur(2px);
}
.acv-chatbot__backdrop--show { display: block; }

/* Header */
.acv-chatbot__head {
    background: linear-gradient(135deg, var(--acv-primary), var(--acv-primary-dark));
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.acv-chatbot__head-info {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #fff;
}

.acv-chatbot__avatar {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.acv-chatbot__head-info strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    font-family: 'Nunito', sans-serif;
}

.acv-chatbot__head-info span {
    font-size: 11.5px;
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 5px;
}

.acv-chatbot__dot {
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 2px rgba(74,222,128,0.3);
    animation: acvPulse 2s infinite;
}

.acv-chatbot__close {
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--acv-trans-fast);
    line-height: 1;
}
.acv-chatbot__close:hover { background: rgba(255,255,255,0.3); }

/* Messages body */
.acv-chatbot__body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scroll-behavior: smooth;
}

.acv-chatbot__body::-webkit-scrollbar { width: 4px; }
.acv-chatbot__body::-webkit-scrollbar-track { background: transparent; }
.acv-chatbot__body::-webkit-scrollbar-thumb { background: var(--acv-border); border-radius: 4px; }

/* Chat bubbles */
.acv-chat-msg {
    display: flex;
    flex-direction: column;
    gap: 3px;
    max-width: 88%;
    animation: acvSlideUp 0.3s var(--acv-ease);
}

.acv-chat-msg--bot { align-self: flex-start; }
.acv-chat-msg--user { align-self: flex-end; align-items: flex-end; }

.acv-chat-msg__bubble {
    padding: 11px 14px;
    border-radius: 16px;
    font-size: 13.5px;
    line-height: 1.65;
}

.acv-chat-msg--bot .acv-chat-msg__bubble {
    background: var(--acv-light);
    color: var(--acv-text);
    border-bottom-left-radius: 4px;
    border: 1px solid var(--acv-border);
}

.acv-chat-msg--user .acv-chat-msg__bubble {
    background: linear-gradient(135deg, var(--acv-primary), var(--acv-primary-dark));
    color: #fff;
    border-bottom-right-radius: 4px;
}

.acv-chat-msg__time {
    font-size: 10.5px;
    color: var(--acv-text-muted);
    padding: 0 4px;
}

/* Typing indicator */
.acv-chat-typing .acv-chat-msg__bubble {
    display: flex;
    gap: 5px;
    align-items: center;
    padding: 13px 16px;
}

.acv-typing-dot {
    width: 7px;
    height: 7px;
    background: var(--acv-text-muted);
    border-radius: 50%;
    animation: acvTyping 1.2s ease-in-out infinite;
}
.acv-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.acv-typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes acvTyping {
    0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
    40% { transform: translateY(-6px); opacity: 1; }
}

/* FAQ chips */
.acv-chatbot__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding: 4px 0 6px;
}

.acv-chip {
    background: rgba(42,157,143,0.07);
    border: 1.5px solid rgba(42,157,143,0.25);
    color: var(--acv-primary-dark);
    padding: 6px 13px;
    border-radius: var(--acv-radius-pill);
    font-size: 12px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    cursor: pointer;
    transition: all var(--acv-trans-fast);
    white-space: nowrap;
}

.acv-chip:hover {
    background: var(--acv-primary);
    border-color: var(--acv-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* Footer input */
.acv-chatbot__footer {
    padding: 10px 12px;
    border-top: 1px solid var(--acv-border);
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    background: var(--acv-white);
}

.acv-chatbot__input {
    flex: 1;
    border: 1.5px solid var(--acv-border);
    border-radius: var(--acv-radius-pill);
    padding: 9px 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    color: var(--acv-text);
    background: var(--acv-light);
    transition: border-color var(--acv-trans-fast), box-shadow var(--acv-trans-fast);
    outline: none;
}

.acv-chatbot__input:focus {
    border-color: var(--acv-primary);
    box-shadow: 0 0 0 3px rgba(42,157,143,0.1);
    background: #fff;
}

.acv-chatbot__send {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--acv-primary), var(--acv-primary-dark));
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: all var(--acv-trans-fast);
    box-shadow: 0 3px 10px rgba(42,157,143,0.3);
}

.acv-chatbot__send:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(42,157,143,0.4);
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .acv-chatbot {
        width: calc(100vw - 24px);
        right: 12px;
        bottom: 80px;
        max-height: 380px;
    }
}

/* ===== SECTION HEADERS ===== */
.acv-section-head {
    text-align: center;
    margin-bottom: 56px;
}

.acv-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--acv-primary), var(--acv-primary-light));
    color: #fff;
    padding: 8px 20px;
    border-radius: var(--acv-radius-pill);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.03em;
}

.acv-section-tag--light {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
}

.acv-section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 18px;
    color: var(--acv-dark);
}

.acv-section-title--light {
    color: #fff;
    background: linear-gradient(135deg, #fff, var(--acv-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.acv-section-sub {
    font-size: 1.05rem;
    color: var(--acv-text-muted);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

.acv-section-sub--light { color: rgba(255,255,255,0.82); }

/* ===== HERO SECTION ===== */
.acv-hero {
    min-height: 100vh;
    padding: 140px 0 90px;
    background: linear-gradient(155deg, #eef7f5 0%, #f0f5ff 60%, #fdf6ee 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.acv-hero__bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Nunito', sans-serif;
    font-size: clamp(80px, 18vw, 220px);
    font-weight: 800;
    color: rgba(42,157,143,0.04);
    letter-spacing: 0.1em;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.acv-hero__orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.acv-hero__orb--1 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(42,157,143,0.13) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: acvFloat 7s ease-in-out infinite;
}

.acv-hero__orb--2 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(231,111,81,0.08) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    animation: acvFloat 9s ease-in-out infinite reverse;
}

.acv-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.acv-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, var(--acv-primary), var(--acv-primary-light));
    color: #fff;
    padding: 9px 18px;
    border-radius: var(--acv-radius-pill);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(42,157,143,0.25);
    animation: acvPulse 3s ease-in-out infinite;
}

.acv-hero__title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    margin-bottom: 22px;
    line-height: 1.08;
    color: var(--acv-dark);
}

.acv-hero__subtitle {
    font-size: 1.1rem;
    color: var(--acv-text-muted);
    margin-bottom: 34px;
    line-height: 1.85;
    max-width: 520px;
}

.acv-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.acv-hero__stats {
    display: flex;
    align-items: center;
    gap: 20px;
}

.acv-hero__stat {
    display: flex;
    flex-direction: column;
}

.acv-hero__stat strong {
    font-family: 'Nunito', sans-serif;
    font-size: 1.6rem;
    color: var(--acv-primary);
    line-height: 1;
}

.acv-hero__stat span {
    font-size: 12px;
    color: var(--acv-text-muted);
    font-weight: 500;
    margin-top: 2px;
}

.acv-hero__stat-divider {
    width: 1px;
    height: 36px;
    background: var(--acv-border);
    flex-shrink: 0;
}

/* Hero Image */
.acv-hero__visual { position: relative; }

.acv-hero__img-wrap {
    border-radius: var(--acv-radius-xl);
    overflow: hidden;
    height: 480px;
    box-shadow: var(--acv-shadow-lg);
    position: relative;
}

.acv-hero__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--acv-ease);
}

.acv-hero__img-wrap:hover img { transform: scale(1.04); }

.acv-hero__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(42,157,143,0.18), rgba(231,111,81,0.08));
}

.acv-hero__float-card {
    position: absolute;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-radius: var(--acv-radius-md);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--acv-shadow-md);
    font-size: 13px;
    font-weight: 600;
    color: var(--acv-text);
    animation: acvFloat 5s ease-in-out infinite;
}

.acv-hero__float-card i { color: var(--acv-primary); font-size: 1.1rem; }

.acv-hero__float-card--tl {
    top: 28px; left: -24px;
    animation-delay: 0s;
}

.acv-hero__float-card--br {
    bottom: 36px; right: -20px;
    animation-delay: 2.5s;
}

/* ===== SERVICES ===== */
.acv-services {
    padding: 110px 0;
    background: var(--acv-white);
}

.acv-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-bottom: 44px;
}

.acv-service-card {
    background: var(--acv-white);
    padding: 38px 30px;
    border-radius: var(--acv-radius-xl);
    box-shadow: var(--acv-shadow-md);
    border-top: 4px solid var(--acv-primary);
    text-align: center;
    transition: all var(--acv-trans);
    position: relative;
    overflow: hidden;
}

.acv-service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(42,157,143,0.03), transparent);
    opacity: 0;
    transition: opacity var(--acv-trans);
}

.acv-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(42,157,143,0.18);
}

.acv-service-card:hover::before { opacity: 1; }

.acv-service-card__icon {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--acv-primary), var(--acv-primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 8px 24px rgba(42,157,143,0.3);
    transition: transform var(--acv-trans);
}

.acv-service-card:hover .acv-service-card__icon { transform: scale(1.1) rotate(-5deg); }

.acv-service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--acv-dark);
}

.acv-service-card p {
    color: var(--acv-text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.75;
}

.acv-service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--acv-primary);
    font-weight: 600;
    font-size: 14px;
    transition: gap var(--acv-trans), color var(--acv-trans);
}

.acv-service-card__link:hover { gap: 12px; color: var(--acv-primary-dark); }

/* ===== WHO WE SERVE ===== */
.acv-audience {
    padding: 110px 0;
    background: linear-gradient(155deg, rgba(42,157,143,0.04) 0%, rgba(231,111,81,0.03) 100%);
    position: relative;
    overflow: hidden;
}

.acv-audience__pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 2px 2px, rgba(42,157,143,0.06) 1px, transparent 0);
    background-size: 36px 36px;
    pointer-events: none;
}

.acv-audience__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 44px;
}

.acv-audience-card {
    background: var(--acv-white);
    padding: 32px 26px;
    border-radius: var(--acv-radius-xl);
    box-shadow: var(--acv-shadow-sm);
    text-align: center;
    transition: all var(--acv-trans);
    border: 2px solid transparent;
}

.acv-audience-card:hover {
    transform: translateY(-8px);
    border-color: var(--acv-primary);
    box-shadow: 0 12px 40px rgba(42,157,143,0.18);
}

.acv-audience-card__icon {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, rgba(42,157,143,0.1), rgba(42,157,143,0.05));
    border: 3px solid rgba(42,157,143,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: var(--acv-primary);
    font-size: 1.8rem;
    transition: all var(--acv-trans);
}

.acv-audience-card:hover .acv-audience-card__icon {
    background: linear-gradient(135deg, var(--acv-primary), var(--acv-primary-light));
    color: #fff;
    border-color: transparent;
    transform: scale(1.1);
}

.acv-audience-card h3 { font-size: 1.1rem; margin-bottom: 12px; color: var(--acv-dark); }
.acv-audience-card p { font-size: 0.9rem; color: var(--acv-text-muted); margin-bottom: 18px; line-height: 1.7; }

.acv-tags { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }

.acv-tag {
    background: rgba(42,157,143,0.08);
    color: var(--acv-primary-dark);
    border: 1px solid rgba(42,157,143,0.18);
    padding: 5px 12px;
    border-radius: var(--acv-radius-sm);
    font-size: 12px;
    font-weight: 600;
}

/* CTA Banner */
.acv-audience__cta {
    background: linear-gradient(135deg, var(--acv-dark), var(--acv-dark-2));
    padding: 52px 56px;
    border-radius: var(--acv-radius-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    color: #fff;
    box-shadow: var(--acv-shadow-lg);
    position: relative;
    overflow: hidden;
}

.acv-audience__cta::before {
    content: '🌍';
    position: absolute;
    top: 20px; right: 30px;
    font-size: 90px;
    opacity: 0.06;
    pointer-events: none;
}

.acv-audience__cta-content h3 { font-size: 1.85rem; margin-bottom: 10px; color: #fff; }
.acv-audience__cta-content p { opacity: 0.85; font-size: 1rem; line-height: 1.8; max-width: 580px; }

/* ===== WHY CHOOSE US ===== */
.acv-why {
    padding: 110px 0;
    background: var(--acv-white);
}

.acv-why__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
    margin-bottom: 56px;
}

.acv-why-card {
    background: linear-gradient(135deg, rgba(42,157,143,0.04), rgba(231,111,81,0.02));
    padding: 30px;
    border-radius: var(--acv-radius-xl);
    border-left: 5px solid var(--acv-primary);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all var(--acv-trans);
    box-shadow: var(--acv-shadow-sm);
}

.acv-why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--acv-shadow-md);
    background: linear-gradient(135deg, rgba(42,157,143,0.08), rgba(231,111,81,0.04));
}

.acv-why-card__num {
    font-family: 'Nunito', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--acv-primary-light);
    opacity: 0.35;
    line-height: 1;
    flex-shrink: 0;
}

.acv-why-card__body { flex: 1; }
.acv-why-card__body h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--acv-dark); }
.acv-why-card__body p { font-size: 0.9rem; color: var(--acv-text-muted); line-height: 1.7; }

.acv-why-card__icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--acv-primary), var(--acv-primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(42,157,143,0.3);
    transition: transform var(--acv-trans);
}

.acv-why-card:hover .acv-why-card__icon { transform: rotate(12deg) scale(1.08); }

/* Stats */
.acv-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}

.acv-stat-box {
    background: var(--acv-white);
    padding: 32px 24px;
    border-radius: var(--acv-radius-xl);
    text-align: center;
    box-shadow: var(--acv-shadow-md);
    border-top: 4px solid var(--acv-primary);
    transition: all var(--acv-trans);
}

.acv-stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(42,157,143,0.18);
}

.acv-stat-box h4 {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--acv-primary), var(--acv-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.acv-stat-box p {
    color: var(--acv-text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

/* ===== TESTIMONIALS ===== */
.acv-testimonials {
    padding: 110px 0;
    background: linear-gradient(155deg, var(--acv-dark), var(--acv-dark-2));
    color: #fff;
    position: relative;
    overflow: hidden;
}

.acv-testimonials__glow {
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(42,157,143,0.15) 0%, transparent 70%);
    top: -150px; left: -150px;
    pointer-events: none;
    border-radius: 50%;
}

.acv-slider { max-width: 880px; margin: 0 auto; }

.acv-slider__track { overflow: hidden; border-radius: var(--acv-radius-xl); }

.acv-slide { display: none; }
.acv-slide--active {
    display: block;
    animation: acvSlideIn 0.5s var(--acv-ease);
}

.acv-testimonial-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--acv-radius-xl);
    padding: 52px;
}

.acv-testimonial-card__quote {
    color: var(--acv-primary-light);
    font-size: 2.2rem;
    margin-bottom: 22px;
    display: block;
}

.acv-testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.92);
    margin-bottom: 32px;
}

.acv-testimonial-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.acv-testimonial-card__footer h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 4px;
}

.acv-testimonial-card__footer span {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
}

.acv-stars { color: #ffd700; font-size: 1rem; }
.acv-stars i { margin-right: 2px; }

.acv-slider__controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
}

.acv-slider__btn {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    cursor: pointer;
    transition: all var(--acv-trans);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.acv-slider__btn:hover {
    background: var(--acv-primary);
    border-color: var(--acv-primary);
    transform: scale(1.1);
}

.acv-slider__dots { display: flex; gap: 10px; }

.acv-dot {
    width: 12px; height: 12px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--acv-trans);
}

.acv-dot--active,
.acv-dot:hover {
    background: var(--acv-primary-light);
    transform: scale(1.3);
}

/* ===== FOOTER ===== */
.acv-footer {
    background: var(--acv-dark);
    color: #fff;
    padding: 72px 0 32px;
}

.acv-footer__main {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 44px;
    margin-bottom: 56px;
}

.acv-footer__logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.acv-footer__logo .acv-logo__text { color: #fff; }

.acv-footer__desc {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 24px;
}

.acv-socials { display: flex; gap: 12px; }

.acv-social {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: all var(--acv-trans);
    border: 1px solid rgba(255,255,255,0.1);
}

.acv-social:hover {
    background: var(--acv-primary);
    border-color: var(--acv-primary);
    transform: translateY(-3px);
}

.acv-footer__heading {
    font-size: 1.05rem;
    margin-bottom: 22px;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

.acv-footer__links li { margin-bottom: 11px; }

.acv-footer__links a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: all var(--acv-trans-fast);
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.acv-footer__links a:hover {
    color: var(--acv-primary-light);
    gap: 4px;
    padding-left: 4px;
}

.acv-footer__contact { display: flex; flex-direction: column; gap: 14px; }

.acv-footer__contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.65);
    font-size: 14px;
}

.acv-footer__contact i {
    color: var(--acv-primary-light);
    width: 18px;
    flex-shrink: 0;
}

.acv-footer__contact a:hover { color: var(--acv-primary-light); }

.acv-footer__bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.acv-footer__bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

.acv-footer__legal { display: flex; gap: 22px; }

.acv-footer__legal a {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    transition: color var(--acv-trans-fast);
}

.acv-footer__legal a:hover { color: var(--acv-primary-light); }

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes acvFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes acvSlideUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes acvSlideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes acvFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@keyframes acvPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(42,157,143,0.25); }
    50% { box-shadow: 0 6px 28px rgba(42,157,143,0.45); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .acv-footer__main { grid-template-columns: 1fr 1fr; }
    .acv-hero__inner { gap: 44px; }
}

@media (max-width: 900px) {
    .acv-hero__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .acv-hero__visual { max-width: 540px; margin: 0 auto; }
    .acv-hero__img-wrap { height: 380px; }
    .acv-hero__content { text-align: center; }
    .acv-hero__actions { justify-content: center; }
    .acv-hero__stats { justify-content: center; }
    .acv-hero__subtitle { margin: 0 auto 34px; }

    .acv-why__grid { grid-template-columns: 1fr; }

    .acv-audience__cta {
        flex-direction: column;
        text-align: center;
        padding: 40px 32px;
    }
}

@media (max-width: 768px) {
    .acv-nav {
        position: fixed;
        top: 70px; left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--acv-white);
        flex-direction: column;
        align-items: center;
        padding: 40px 24px;
        transition: left var(--acv-trans);
        box-shadow: var(--acv-shadow-lg);
        z-index: 999;
        overflow-y: auto;
        gap: 8px;
    }

    .acv-nav--open { left: 0; }

    .acv-nav li { width: 100%; text-align: center; }
    .acv-nav__link { display: block; padding: 14px 0; font-size: 16px; }

    .acv-hamburger { display: flex; }
    .acv-btn--cta { display: none; }

    .acv-hero { padding: 120px 0 70px; }

    .acv-services, .acv-audience, .acv-why, .acv-testimonials { padding: 80px 0; }

    .acv-hero__float-card { display: none; }

    .acv-testimonial-card { padding: 34px 26px; }

    .acv-section-head { margin-bottom: 40px; }

    .acv-footer__main { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 576px) {
    .acv-hero__actions { flex-direction: column; align-items: stretch; }
    .acv-hero__actions .acv-btn { justify-content: center; }

    .acv-services__grid,
    .acv-audience__grid { grid-template-columns: 1fr; }

    .acv-footer__main { grid-template-columns: 1fr; }

    .acv-testimonial-card { padding: 26px 20px; }

    .acv-why-card { flex-direction: column; text-align: center; }

    .acv-audience__cta { padding: 30px 22px; }

    .acv-stats { grid-template-columns: 1fr 1fr; }

    .acv-float { width: 44px; height: 44px; font-size: 1.15rem; }
    .acv-float--whatsapp { left: 16px; }
    .acv-float--chat { right: 16px; }

    .acv-scroll-top { right: 16px; bottom: 82px; }
}

@media (max-width: 400px) {
    .acv-hero__title { font-size: 1.9rem; }
    .acv-section-title { font-size: 1.75rem; }
    .acv-stats { grid-template-columns: 1fr; }
}

/* ================================================================
   AFYACODE VENTURES — about.css
   Only styles for "abt-" prefixed classes (about-page-only).
   Shared utilities (acv-btn, acv-section-head, acv-tag, etc.)
   are already defined in styles.css and NOT repeated here.
   ================================================================ */

/* ═══════════════════════════════════════════════════════
   ABOUT HERO
═══════════════════════════════════════════════════════ */
.abt-hero {
    min-height: 70vh;
    padding: 150px 0 90px;
    background: linear-gradient(155deg, #eef7f5 0%, #f0f5ff 55%, #fdf6ee 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    text-align: center;
}

.abt-hero__orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.abt-hero__orb--1 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(42,157,143,0.12) 0%, transparent 70%);
    top: -120px;
    right: -100px;
    animation: acvFloat 8s ease-in-out infinite;
}

.abt-hero__orb--2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(231,111,81,0.07) 0%, transparent 70%);
    bottom: -60px;
    left: -60px;
    animation: acvFloat 10s ease-in-out infinite reverse;
}

.abt-hero__inner {
    position: relative;
    z-index: 1;
}

.abt-hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--acv-dark);
}

.abt-hero__subtitle {
    font-size: 1.1rem;
    color: var(--acv-text-muted);
    max-width: 740px;
    margin: 0 auto 36px;
    line-height: 1.9;
}

.abt-hero__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    padding: 28px 40px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(10px);
    border-radius: var(--acv-radius-xl);
    border: 1px solid rgba(42,157,143,0.12);
    box-shadow: var(--acv-shadow-sm);
    display: inline-flex;
}

.abt-stat {
    text-align: center;
}

.abt-stat h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--acv-primary), var(--acv-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.abt-stat p {
    font-size: 12.5px;
    color: var(--acv-text-muted);
    font-weight: 600;
}

.abt-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--acv-border);
    flex-shrink: 0;
}

.abt-hero__cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Breadcrumb */
.abt-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 13.5px;
    color: var(--acv-text-muted);
}

.abt-breadcrumb a {
    color: var(--acv-primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--acv-trans-fast);
}

.abt-breadcrumb a:hover { color: var(--acv-primary-dark); }

.abt-breadcrumb i.fa-chevron-right {
    font-size: 10px;
    color: var(--acv-border);
}

/* ═══════════════════════════════════════════════════════
   OUR STORY
═══════════════════════════════════════════════════════ */
.abt-story {
    padding: 110px 0;
    background: var(--acv-white);
}

.abt-story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

/* Image / visual side */
.abt-story__visual { position: relative; }

.abt-story__img-wrap {
    border-radius: var(--acv-radius-xl);
    overflow: hidden;
    height: 400px;
    box-shadow: var(--acv-shadow-lg);
    position: relative;
    margin-bottom: 20px;
}

.abt-story__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--acv-ease);
}

.abt-story__img-wrap:hover img { transform: scale(1.04); }

.abt-story__flag-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 12px 18px;
    border-radius: var(--acv-radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--acv-shadow-md);
    font-size: 1.6rem;
}

.abt-story__flag-badge div { line-height: 1.3; }
.abt-story__flag-badge strong { font-size: 14px; color: var(--acv-dark); display: block; }
.abt-story__flag-badge small { font-size: 12px; color: var(--acv-text-muted); }

/* Impact stats grid */
.abt-impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.abt-impact-card {
    background: var(--acv-light);
    border: 1px solid var(--acv-border);
    border-radius: var(--acv-radius-md);
    padding: 18px 14px;
    text-align: center;
    transition: all var(--acv-trans);
}

.abt-impact-card:hover {
    background: var(--acv-white);
    border-color: var(--acv-primary-light);
    transform: translateY(-4px);
    box-shadow: var(--acv-shadow-md);
}

.abt-impact-card i {
    font-size: 1.4rem;
    color: var(--acv-primary);
    margin-bottom: 8px;
    display: block;
}

.abt-impact-card strong {
    font-family: 'Nunito', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--acv-dark);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.abt-impact-card span {
    font-size: 12px;
    color: var(--acv-text-muted);
    font-weight: 500;
}

/* Text side */
.abt-story__text { display: flex; flex-direction: column; gap: 28px; }

.abt-story__para h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--acv-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.abt-story__para h3 i { color: var(--acv-primary); }

.abt-story__para p {
    color: var(--acv-text-muted);
    line-height: 1.85;
    font-size: 0.97rem;
}

/* Quote */
.abt-quote {
    background: linear-gradient(135deg, rgba(42,157,143,0.06), rgba(231,111,81,0.04));
    border-left: 4px solid var(--acv-primary);
    border-radius: 0 var(--acv-radius-md) var(--acv-radius-md) 0;
    padding: 24px 24px 24px 28px;
    position: relative;
}

.abt-quote__icon {
    font-size: 1.8rem;
    color: var(--acv-primary-light);
    opacity: 0.5;
    margin-bottom: 10px;
    display: block;
}

.abt-quote p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--acv-text);
    font-style: italic;
    margin-bottom: 12px;
}

.abt-quote cite {
    font-size: 13px;
    color: var(--acv-primary);
    font-weight: 600;
    font-style: normal;
}

/* ═══════════════════════════════════════════════════════
   MISSION / VISION / MOTTO
═══════════════════════════════════════════════════════ */
.abt-mvv {
    padding: 110px 0;
    background: linear-gradient(155deg, rgba(42,157,143,0.04), rgba(231,111,81,0.03));
    position: relative;
    overflow: hidden;
}

.abt-mvv__pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(42,157,143,0.05) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
}

.abt-mvv__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 40px;
}

.abt-mvv-card {
    background: var(--acv-white);
    border-radius: var(--acv-radius-xl);
    padding: 38px 34px;
    box-shadow: var(--acv-shadow-md);
    transition: all var(--acv-trans);
    border-top: 4px solid var(--acv-primary);
}

.abt-mvv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--acv-shadow-lg);
}

.abt-mvv-card__head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.abt-mvv-card__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--acv-primary), var(--acv-primary-light));
    border-radius: var(--acv-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 6px 18px rgba(42,157,143,0.3);
    flex-shrink: 0;
    transition: transform var(--acv-trans);
}

.abt-mvv-card:hover .abt-mvv-card__icon { transform: rotate(8deg) scale(1.08); }

.abt-mvv-card__icon--vision {
    background: linear-gradient(135deg, var(--acv-accent), #f4a261);
    box-shadow: 0 6px 18px rgba(231,111,81,0.3);
}

.abt-mvv-card__head h3 { font-size: 1.4rem; color: var(--acv-dark); }

.abt-mvv-card > p {
    color: var(--acv-text-muted);
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 22px;
}

.abt-mvv-card__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.abt-mvv-card__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--acv-text);
}

.abt-mvv-card__list i.fa-check-circle { color: var(--acv-primary); }
.abt-mvv-card__list i.fa-star { color: var(--acv-accent); }

/* Motto block */
.abt-motto {
    background: linear-gradient(135deg, var(--acv-dark), var(--acv-dark-2));
    border-radius: var(--acv-radius-xl);
    padding: 60px 48px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--acv-shadow-lg);
}

.abt-motto::before {
    content: '""';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 200px;
    font-family: Georgia, serif;
    color: rgba(255,255,255,0.03);
    pointer-events: none;
    line-height: 1;
}

.abt-motto__icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--acv-primary), var(--acv-primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.6rem;
    color: #fff;
    box-shadow: var(--acv-shadow-glow);
}

.abt-motto__label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--acv-primary-light);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.abt-motto__text {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    color: #fff;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #fff, var(--acv-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.abt-motto p {
    color: rgba(255,255,255,0.78);
    max-width: 680px;
    margin: 0 auto 36px;
    font-size: 1rem;
    line-height: 1.85;
}

.abt-motto__pillars {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.abt-pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.abt-pillar__icon {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--acv-primary-light);
    font-size: 1.2rem;
    transition: all var(--acv-trans);
}

.abt-pillar:hover .abt-pillar__icon {
    background: var(--acv-primary);
    border-color: var(--acv-primary);
    transform: translateY(-4px);
}

.abt-pillar span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    text-align: center;
    max-width: 120px;
}

/* ═══════════════════════════════════════════════════════
   TIMELINE
═══════════════════════════════════════════════════════ */
.abt-timeline {
    padding: 110px 0;
    background: var(--acv-white);
}

.abt-timeline__track {
    position: relative;
    padding: 10px 0;
}

.abt-timeline__line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--acv-primary-light), rgba(42,157,143,0.15));
    transform: translateX(-50%);
    border-radius: 2px;
}

.abt-milestone {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 56px;
    position: relative;
}

/* Left-side milestones */
.abt-milestone .abt-milestone__year {
    width: calc(50% - 36px);
    text-align: right;
    padding-right: 28px;
    flex-shrink: 0;
}

.abt-milestone .abt-milestone__card {
    width: calc(50% - 36px);
    padding-left: 28px;
    flex-shrink: 0;
}

/* Right-side milestones */
.abt-milestone--right .abt-milestone__year {
    order: 3;
    text-align: left;
    padding-right: 0;
    padding-left: 28px;
}

.abt-milestone--right .abt-milestone__dot { order: 2; }

.abt-milestone--right .abt-milestone__card {
    order: 1;
    text-align: right;
    padding-left: 0;
    padding-right: 28px;
}

.abt-milestone--right .abt-milestone__card .abt-milestone__tags {
    justify-content: flex-end;
}

.abt-milestone__year {
    font-family: 'Nunito', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--acv-primary);
    line-height: 1;
    padding-top: 18px;
}

.abt-milestone__year--current {
    background: linear-gradient(135deg, var(--acv-primary), var(--acv-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
}

.abt-milestone__dot {
    width: 18px;
    height: 18px;
    background: var(--acv-primary);
    border: 4px solid var(--acv-white);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--acv-primary-light);
    flex-shrink: 0;
    margin-top: 22px;
    z-index: 1;
    transition: transform var(--acv-trans);
}

.abt-milestone:hover .abt-milestone__dot { transform: scale(1.3); }

.abt-milestone__dot--current {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--acv-primary), var(--acv-accent));
    box-shadow: 0 0 0 4px rgba(42,157,143,0.25), 0 0 0 8px rgba(42,157,143,0.08);
    animation: acvPulse 2.5s ease-in-out infinite;
}

.abt-milestone__card {
    background: var(--acv-white);
    border-radius: var(--acv-radius-xl);
    padding: 28px;
    box-shadow: var(--acv-shadow-md);
    border: 1px solid var(--acv-border);
    transition: all var(--acv-trans);
}

.abt-milestone:hover .abt-milestone__card {
    box-shadow: var(--acv-shadow-lg);
    border-color: rgba(42,157,143,0.25);
    transform: translateY(-4px);
}

.abt-milestone__card--current {
    border-color: rgba(42,157,143,0.3);
    background: linear-gradient(135deg, rgba(42,157,143,0.04), rgba(231,111,81,0.02));
}

.abt-milestone__icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--acv-primary), var(--acv-primary-light));
    border-radius: var(--acv-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.abt-milestone__card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--acv-dark);
}

.abt-milestone__card p {
    font-size: 0.9rem;
    color: var(--acv-text-muted);
    line-height: 1.8;
    margin-bottom: 14px;
}

.abt-milestone__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════
   AFRICA FOCUS
═══════════════════════════════════════════════════════ */
.abt-africa {
    padding: 110px 0;
    background: linear-gradient(155deg, rgba(42,157,143,0.05), rgba(231,111,81,0.03));
    position: relative;
    overflow: hidden;
}

.abt-africa__pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(42,157,143,0.05) 1px, transparent 0);
    background-size: 36px 36px;
    pointer-events: none;
}

.abt-africa__showcase {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: center;
}

.abt-africa__visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 340px;
    background: linear-gradient(135deg, var(--acv-dark), var(--acv-dark-2));
    border-radius: var(--acv-radius-xl);
    box-shadow: var(--acv-shadow-lg);
    overflow: hidden;
}

.abt-africa__globe {
    font-size: 120px;
    line-height: 1;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
    animation: acvFloat 6s ease-in-out infinite;
}

.abt-africa__overlay {
    text-align: center;
    margin-top: 16px;
    z-index: 1;
}

.abt-africa__overlay h3 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 4px;
}

.abt-africa__overlay p {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}

.abt-africa__content h3 {
    font-size: 1.7rem;
    margin-bottom: 16px;
    color: var(--acv-dark);
}

.abt-africa__content > p {
    color: var(--acv-text-muted);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 32px;
}

.abt-africa__features {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.abt-africa__feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.abt-africa__feat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--acv-primary), var(--acv-primary-light));
    border-radius: var(--acv-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(42,157,143,0.25);
    transition: transform var(--acv-trans);
}

.abt-africa__feature:hover .abt-africa__feat-icon { transform: scale(1.1) rotate(-5deg); }

.abt-africa__feature h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--acv-dark);
}

.abt-africa__feature p {
    font-size: 0.9rem;
    color: var(--acv-text-muted);
    line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════
   JOURNEY STEPS
═══════════════════════════════════════════════════════ */
.abt-journey {
    padding: 110px 0;
    background: var(--acv-white);
}

.abt-journey__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.abt-journey__connector {
    position: absolute;
    top: 36px;
    left: calc(12.5% + 8px);
    right: calc(12.5% + 8px);
    height: 2px;
    background: linear-gradient(90deg, var(--acv-primary), var(--acv-primary-light), var(--acv-accent));
    border-radius: 2px;
    z-index: 0;
}

.abt-step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding-top: 8px;
}

.abt-step__circle {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--acv-primary), var(--acv-primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 1.4rem;
    position: relative;
    box-shadow: var(--acv-shadow-glow);
    transition: all var(--acv-trans);
    border: 4px solid var(--acv-white);
}

.abt-step:hover .abt-step__circle {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 16px 40px rgba(42,157,143,0.35);
}

.abt-step__num {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    background: var(--acv-accent);
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--acv-white);
}

.abt-step h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--acv-dark);
}

.abt-step p {
    font-size: 0.9rem;
    color: var(--acv-text-muted);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .abt-story__grid { grid-template-columns: 1fr; gap: 44px; }
    .abt-story__visual { max-width: 560px; margin: 0 auto; }
    .abt-africa__showcase { grid-template-columns: 1fr; gap: 44px; }
    .abt-africa__visual { max-width: 400px; margin: 0 auto; min-height: 260px; }
    .abt-mvv__grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .abt-timeline__line { left: 24px; }

    .abt-milestone {
        flex-direction: column;
        padding-left: 60px;
    }

    .abt-milestone .abt-milestone__year,
    .abt-milestone--right .abt-milestone__year {
        width: auto;
        text-align: left;
        padding: 0 0 8px 0;
        order: 1;
    }

    .abt-milestone .abt-milestone__dot,
    .abt-milestone--right .abt-milestone__dot {
        position: absolute;
        left: 15px;
        top: 20px;
        order: unset;
    }

    .abt-milestone .abt-milestone__card,
    .abt-milestone--right .abt-milestone__card {
        width: 100%;
        padding: 24px;
        text-align: left;
        order: 3;
    }

    .abt-milestone--right .abt-milestone__card .abt-milestone__tags {
        justify-content: flex-start;
    }

    .abt-journey__steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .abt-journey__connector { display: none; }
}

@media (max-width: 768px) {
    .abt-hero { padding: 120px 0 70px; }
    .abt-hero__stats { padding: 20px 24px; gap: 18px; }
    .abt-stat h3 { font-size: 1.8rem; }
    .abt-story { padding: 80px 0; }
    .abt-mvv { padding: 80px 0; }
    .abt-timeline { padding: 80px 0; }
    .abt-africa { padding: 80px 0; }
    .abt-journey { padding: 80px 0; }
    .abt-motto { padding: 44px 28px; }
    .abt-motto__pillars { gap: 18px; }
}

@media (max-width: 576px) {
    .abt-hero__stats { flex-direction: column; gap: 14px; }
    .abt-stat-divider { width: 60px; height: 1px; }
    .abt-hero__cta { flex-direction: column; align-items: stretch; }
    .abt-hero__cta .acv-btn { justify-content: center; }
    .abt-impact-grid { grid-template-columns: 1fr 1fr; }
    .abt-journey__steps { grid-template-columns: 1fr; }
    .abt-story__img-wrap { height: 280px; }
    .abt-mvv-card { padding: 26px 22px; }
}


/* ================================================================
   AFYACODE VENTURES — services.css
   Only "svc-" prefixed classes (services-page-only).
   Shared utilities are in styles.css — not repeated here.
   ================================================================ */

/* ═══════════════════════════════════════════════════════
   SERVICES HERO
═══════════════════════════════════════════════════════ */
.svc-hero {
    min-height: 65vh;
    padding: 148px 0 84px;
    background: linear-gradient(155deg, #eef7f5 0%, #f0f5ff 55%, #fdf6ee 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    text-align: center;
}

.svc-hero__orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.svc-hero__orb--1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(42,157,143,0.12) 0%, transparent 70%);
    top: -120px; right: -100px;
    animation: acvFloat 8s ease-in-out infinite;
}

.svc-hero__orb--2 {
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(231,111,81,0.07) 0%, transparent 70%);
    bottom: -60px; left: -60px;
    animation: acvFloat 10s ease-in-out infinite reverse;
}

.svc-hero__inner { position: relative; z-index: 1; }

.svc-hero__title {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    margin-bottom: 20px;
    color: var(--acv-dark);
    line-height: 1.1;
}

.svc-hero__subtitle {
    font-size: 1.05rem;
    color: var(--acv-text-muted);
    max-width: 680px;
    margin: 0 auto 34px;
    line-height: 1.9;
}

.svc-hero__stats {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    padding: 22px 36px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(10px);
    border-radius: var(--acv-radius-xl);
    border: 1px solid rgba(42,157,143,0.12);
    box-shadow: var(--acv-shadow-sm);
    margin-bottom: 34px;
    flex-wrap: wrap;
    justify-content: center;
}

.svc-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.svc-stat strong {
    font-family: 'Nunito', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--acv-primary), var(--acv-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.svc-stat span {
    font-size: 12px;
    color: var(--acv-text-muted);
    font-weight: 600;
}

.svc-stat-divider {
    width: 1px; height: 36px;
    background: var(--acv-border);
    flex-shrink: 0;
}

.svc-hero__cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════
   QUICK NAV BAR
═══════════════════════════════════════════════════════ */
.svc-quicknav {
    background: var(--acv-white);
    border-bottom: 1px solid var(--acv-border);
    position: sticky;
    top: 70px;
    z-index: 100;
    box-shadow: var(--acv-shadow-sm);
}

.svc-quicknav__inner {
    display: flex;
    align-items: center;
    gap: 4px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none;
}

.svc-quicknav__inner::-webkit-scrollbar { display: none; }

.svc-qlink {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: var(--acv-radius-pill);
    font-size: 13px;
    font-weight: 600;
    color: var(--acv-text-muted);
    white-space: nowrap;
    transition: all var(--acv-trans-fast);
    border: 1.5px solid transparent;
    flex-shrink: 0;
}

.svc-qlink i { font-size: 12px; }

.svc-qlink:hover,
.svc-qlink--active {
    color: var(--acv-primary);
    background: rgba(42,157,143,0.07);
    border-color: rgba(42,157,143,0.2);
}

/* ═══════════════════════════════════════════════════════
   SERVICES SECTION WRAPPER
═══════════════════════════════════════════════════════ */
.svc-section {
    padding: 90px 0 100px;
    background: var(--acv-light);
}

/* ═══════════════════════════════════════════════════════
   SERVICE CARD
═══════════════════════════════════════════════════════ */
.svc-card {
    background: var(--acv-white);
    border-radius: var(--acv-radius-xl);
    box-shadow: var(--acv-shadow-md);
    overflow: hidden;
    margin-bottom: 36px;
    transition: all var(--acv-trans);
    border: 1px solid var(--acv-border);
    scroll-margin-top: 130px;
}

.svc-card:hover {
    box-shadow: var(--acv-shadow-lg);
    transform: translateY(-4px);
}

/* Alternating accent border */
.svc-card { border-top: 4px solid var(--acv-primary); }
.svc-card--alt { border-top: 4px solid var(--acv-accent); }

/* Card Header */
.svc-card__header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 36px 36px 28px;
    border-bottom: 1px solid var(--acv-border);
    background: linear-gradient(135deg, rgba(42,157,143,0.03), transparent);
}

.svc-card--alt .svc-card__header {
    background: linear-gradient(135deg, rgba(231,111,81,0.04), transparent);
}

.svc-card__icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--acv-primary), var(--acv-primary-light));
    border-radius: var(--acv-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 8px 22px rgba(42,157,143,0.28);
    transition: transform var(--acv-trans);
}

.svc-card--alt .svc-card__icon {
    background: linear-gradient(135deg, var(--acv-accent), #f4a261);
    box-shadow: 0 8px 22px rgba(231,111,81,0.28);
}

.svc-card:hover .svc-card__icon { transform: rotate(-6deg) scale(1.08); }

.svc-card__title-wrap { flex: 1; }

.svc-card__num {
    font-family: 'Nunito', sans-serif;
    font-size: 0.8rem;
    font-weight: 900;
    color: var(--acv-primary);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 6px;
}

.svc-card--alt .svc-card__num { color: var(--acv-accent); }

.svc-card__title-wrap h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: 6px;
    color: var(--acv-dark);
}

.svc-card__tagline {
    color: var(--acv-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Card Body */
.svc-card__body { padding: 30px 36px; }

.svc-card__desc {
    color: var(--acv-text-muted);
    font-size: 0.97rem;
    line-height: 1.85;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--acv-border);
}

.svc-card__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 28px;
}

.svc-detail-col h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--acv-dark);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.svc-detail-col h4 i { color: var(--acv-primary); font-size: 0.9rem; }
.svc-card--alt .svc-detail-col h4 i { color: var(--acv-accent); }

/* Who this helps list */
.svc-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.svc-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13.5px;
    color: var(--acv-text);
    line-height: 1.5;
}

.svc-list i {
    color: var(--acv-primary);
    font-size: 0.8rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.svc-card--alt .svc-list i { color: var(--acv-accent); }

/* Deliverables */
.svc-deliverables {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.svc-deliverable {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--acv-light);
    padding: 9px 13px;
    border-radius: var(--acv-radius-sm);
    font-size: 13px;
    font-weight: 500;
    color: var(--acv-text);
    border: 1px solid var(--acv-border);
    transition: all var(--acv-trans-fast);
}

.svc-deliverable:hover {
    background: rgba(42,157,143,0.06);
    border-color: rgba(42,157,143,0.2);
}

.svc-card--alt .svc-deliverable:hover {
    background: rgba(231,111,81,0.05);
    border-color: rgba(231,111,81,0.2);
}

.svc-deliverable i {
    color: var(--acv-primary);
    width: 16px;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.svc-card--alt .svc-deliverable i { color: var(--acv-accent); }

/* Benefits */
.svc-benefits {
    background: linear-gradient(135deg, rgba(42,157,143,0.05), rgba(231,111,81,0.03));
    border-radius: var(--acv-radius-md);
    padding: 20px 22px;
    border: 1px solid rgba(42,157,143,0.12);
}

.svc-card--alt .svc-benefits {
    background: linear-gradient(135deg, rgba(231,111,81,0.05), rgba(42,157,143,0.03));
    border-color: rgba(231,111,81,0.12);
}

.svc-benefits h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--acv-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.svc-benefits h4 i { color: #f59e0b; font-size: 0.85rem; }

.svc-benefits__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.svc-benefit-tag {
    background: var(--acv-white);
    color: var(--acv-primary-dark);
    border: 1.5px solid rgba(42,157,143,0.22);
    padding: 5px 13px;
    border-radius: var(--acv-radius-pill);
    font-size: 12.5px;
    font-weight: 600;
    transition: all var(--acv-trans-fast);
}

.svc-benefit-tag:hover {
    background: var(--acv-primary);
    border-color: var(--acv-primary);
    color: #fff;
}

.svc-card--alt .svc-benefit-tag {
    color: #c0550f;
    border-color: rgba(231,111,81,0.22);
}

.svc-card--alt .svc-benefit-tag:hover {
    background: var(--acv-accent);
    border-color: var(--acv-accent);
    color: #fff;
}

/* Card Footer */
.svc-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 36px;
    background: var(--acv-light);
    border-top: 1px solid var(--acv-border);
    flex-wrap: wrap;
}

.svc-timeline {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13.5px;
    color: var(--acv-text-muted);
}

.svc-timeline i { color: var(--acv-primary); }
.svc-card--alt .svc-timeline i { color: var(--acv-accent); }
.svc-timeline strong { color: var(--acv-dark); }

/* ═══════════════════════════════════════════════════════
   FINAL CTA BANNER
═══════════════════════════════════════════════════════ */
.svc-final-cta {
    background: linear-gradient(135deg, var(--acv-dark), var(--acv-dark-2));
    border-radius: var(--acv-radius-xl);
    padding: 56px 48px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--acv-shadow-lg);
    margin-top: 16px;
}

.svc-final-cta::before {
    content: '🌍';
    position: absolute;
    top: 20px; right: 30px;
    font-size: 90px;
    opacity: 0.05;
    pointer-events: none;
}

.svc-final-cta__content h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: #fff;
    margin-bottom: 12px;
}

.svc-final-cta__content > p {
    color: rgba(255,255,255,0.78);
    font-size: 1rem;
    margin-bottom: 28px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.svc-final-cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.acv-btn--light {
    color: rgba(255,255,255,0.9) !important;
    border-color: rgba(255,255,255,0.35) !important;
}

.acv-btn--light:hover {
    background: rgba(255,255,255,0.15) !important;
    border-color: rgba(255,255,255,0.6) !important;
    color: #fff !important;
}

.svc-final-cta__note {
    font-size: 13.5px;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    flex-wrap: wrap;
    margin: 0 !important;
}

.svc-final-cta__note i { color: var(--acv-primary-light); }
.svc-final-cta__note a {
    color: var(--acv-primary-light);
    font-weight: 600;
    transition: color var(--acv-trans-fast);
}
.svc-final-cta__note a:hover { color: #fff; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .svc-card__grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 768px) {
    .svc-hero { padding: 120px 0 64px; }
    .svc-section { padding: 70px 0 80px; }
    .svc-card__header { padding: 26px 24px 22px; flex-direction: column; }
    .svc-card__body { padding: 24px; }
    .svc-card__footer { padding: 18px 24px; flex-direction: column; align-items: flex-start; }
    .svc-final-cta { padding: 40px 28px; }
    .svc-hero__stats { gap: 16px; padding: 18px 24px; }
    .svc-quicknav { top: 66px; }
}

@media (max-width: 576px) {
    .svc-hero__cta { flex-direction: column; align-items: stretch; }
    .svc-hero__cta .acv-btn { justify-content: center; }
    .svc-hero__stats { flex-direction: column; gap: 12px; }
    .svc-stat-divider { width: 60px; height: 1px; }
    .svc-card__header { gap: 16px; }
    .svc-card__icon { width: 56px; height: 56px; font-size: 1.4rem; }
    .svc-final-cta__actions { flex-direction: column; align-items: stretch; }
    .svc-final-cta__actions .acv-btn { justify-content: center; }
}

/* ================================================================
   AFYACODE VENTURES — audience.css
   Only "aud-" prefixed classes (audience-page-only).
   Shared utilities live in styles.css — not repeated here.
   ================================================================ */

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.aud-hero {
    min-height: 100vh;
    padding: 148px 0 90px;
    background: linear-gradient(155deg, #eef7f5 0%, #f0f5ff 55%, #fdf6ee 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.aud-hero__orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.aud-hero__orb--1 {
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(42,157,143,0.13) 0%, transparent 70%);
    top: -130px; right: -100px;
    animation: acvFloat 8s ease-in-out infinite;
}

.aud-hero__orb--2 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(231,111,81,0.07) 0%, transparent 70%);
    bottom: -60px; left: -60px;
    animation: acvFloat 10s ease-in-out infinite reverse;
}

.aud-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Content */
.aud-hero__title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    margin-bottom: 22px;
    line-height: 1.08;
    color: var(--acv-dark);
}

.aud-hero__subtitle {
    font-size: 1.1rem;
    color: var(--acv-text-muted);
    margin-bottom: 34px;
    line-height: 1.85;
    max-width: 520px;
}

.aud-hero__stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.aud-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.aud-stat strong {
    font-family: 'Nunito', sans-serif;
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--acv-primary);
    line-height: 1;
}

.aud-stat span {
    font-size: 12px;
    color: var(--acv-text-muted);
    font-weight: 600;
}

.aud-stat-divider {
    width: 1px; height: 36px;
    background: var(--acv-border);
    flex-shrink: 0;
}

.aud-hero__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Visual */
.aud-hero__visual { position: relative; }

.aud-hero__img-wrap {
    border-radius: var(--acv-radius-xl);
    overflow: hidden;
    height: 480px;
    box-shadow: var(--acv-shadow-lg);
    position: relative;
}

.aud-hero__img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--acv-ease);
}

.aud-hero__img-wrap:hover img { transform: scale(1.04); }

.aud-hero__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(42,157,143,0.18), rgba(231,111,81,0.07));
}

.aud-hero__badge {
    position: absolute;
    bottom: 24px; left: -20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-radius: var(--acv-radius-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--acv-shadow-md);
    animation: acvFloat 5s ease-in-out infinite;
}

.aud-hero__badge-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--acv-primary), var(--acv-primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.aud-hero__badge strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--acv-dark);
}

.aud-hero__badge span {
    font-size: 11.5px;
    color: var(--acv-text-muted);
}

/* ═══════════════════════════════════════════════════════
   CATEGORIES SECTION
═══════════════════════════════════════════════════════ */
.aud-cats {
    padding: 110px 0 100px;
    background: var(--acv-light);
}

/* 4-column grid, wraps to 2 then 1 */
.aud-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

/* ═══════════════════════════════════════════════════════
   AUDIENCE CARD
═══════════════════════════════════════════════════════ */
.aud-card {
    background: var(--acv-white);
    border-radius: var(--acv-radius-xl);
    box-shadow: var(--acv-shadow-sm);
    border: 2px solid transparent;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--acv-trans);
    scroll-margin-top: 100px;
}

.aud-card:hover {
    transform: translateY(-8px);
    border-color: var(--acv-primary);
    box-shadow: 0 16px 48px rgba(42,157,143,0.18);
}

/* Card Head */
.aud-card__head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 24px 22px 18px;
    border-bottom: 1px solid var(--acv-border);
}

.aud-card__icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--acv-primary), var(--acv-primary-light));
    border-radius: var(--acv-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(42,157,143,0.28);
    transition: transform var(--acv-trans);
}

.aud-card:hover .aud-card__icon { transform: rotate(-8deg) scale(1.1); }

/* Icon colour variants */
.aud-card__icon--2 { background: linear-gradient(135deg, #e76f51, #f4a261); box-shadow: 0 6px 16px rgba(231,111,81,0.28); }
.aud-card__icon--3 { background: linear-gradient(135deg, #6366f1, #818cf8); box-shadow: 0 6px 16px rgba(99,102,241,0.28); }
.aud-card__icon--4 { background: linear-gradient(135deg, #16a34a, #4ade80); box-shadow: 0 6px 16px rgba(22,163,74,0.28); }
.aud-card__icon--5 { background: linear-gradient(135deg, #0891b2, #22d3ee); box-shadow: 0 6px 16px rgba(8,145,178,0.28); }
.aud-card__icon--6 { background: linear-gradient(135deg, #7c3aed, #a78bfa); box-shadow: 0 6px 16px rgba(124,58,237,0.28); }
.aud-card__icon--7 { background: linear-gradient(135deg, #b45309, #f59e0b); box-shadow: 0 6px 16px rgba(180,83,9,0.28); }
.aud-card__icon--8 { background: linear-gradient(135deg, #be185d, #f472b6); box-shadow: 0 6px 16px rgba(190,24,93,0.28); }

.aud-card__head h3 {
    font-size: 1rem;
    color: var(--acv-dark);
    margin-bottom: 4px;
    line-height: 1.3;
}

.aud-card__head > div > p {
    font-size: 12px;
    color: var(--acv-text-muted);
    line-height: 1.5;
}

/* Card Body */
.aud-card__body {
    padding: 18px 22px;
    flex: 1;
}

/* Profile items */
.aud-profiles {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.aud-profile {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 9px 12px;
    background: var(--acv-light);
    border-radius: var(--acv-radius-sm);
    border: 1px solid var(--acv-border);
    transition: all var(--acv-trans-fast);
}

.aud-profile:hover {
    background: rgba(42,157,143,0.05);
    border-color: rgba(42,157,143,0.2);
}

.aud-profile__avatar {
    width: 34px; height: 34px;
    background: linear-gradient(135deg, rgba(42,157,143,0.12), rgba(42,157,143,0.06));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--acv-primary);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.aud-profile h4 {
    font-size: 12.5px;
    color: var(--acv-dark);
    margin-bottom: 1px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

.aud-profile p {
    font-size: 11px;
    color: var(--acv-text-muted);
}

/* Tags */
.aud-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* Card CTA */
.aud-card__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px;
    border-top: 1px solid var(--acv-border);
    font-size: 13px;
    font-weight: 700;
    color: var(--acv-primary);
    background: rgba(42,157,143,0.03);
    transition: all var(--acv-trans-fast);
    margin-top: auto;
}

.aud-card__cta i {
    font-size: 11px;
    transition: transform var(--acv-trans-fast);
}

.aud-card__cta:hover {
    background: var(--acv-primary);
    color: #fff;
}

.aud-card__cta:hover i { transform: translateX(5px); }

/* Stagger delays for grid items */
.aud-grid .acv-reveal:nth-child(1) { transition-delay: 0.05s; }
.aud-grid .acv-reveal:nth-child(2) { transition-delay: 0.10s; }
.aud-grid .acv-reveal:nth-child(3) { transition-delay: 0.15s; }
.aud-grid .acv-reveal:nth-child(4) { transition-delay: 0.20s; }
.aud-grid .acv-reveal:nth-child(5) { transition-delay: 0.25s; }
.aud-grid .acv-reveal:nth-child(6) { transition-delay: 0.30s; }
.aud-grid .acv-reveal:nth-child(7) { transition-delay: 0.35s; }
.aud-grid .acv-reveal:nth-child(8) { transition-delay: 0.40s; }

/* ═══════════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════════ */
.aud-cta {
    background: linear-gradient(135deg, var(--acv-dark), var(--acv-dark-2));
    border-radius: var(--acv-radius-xl);
    padding: 56px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--acv-shadow-lg);
}

.aud-cta::before {
    content: '🌍';
    position: absolute;
    top: 16px; right: 28px;
    font-size: 90px;
    opacity: 0.05;
    pointer-events: none;
}

.aud-cta__content h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #fff;
    margin-bottom: 12px;
}

.aud-cta__content > p {
    color: rgba(255,255,255,0.78);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 28px;
}

.aud-cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.aud-cta__btn-light {
    background: transparent;
    color: rgba(255,255,255,0.85);
    border: 2px solid rgba(255,255,255,0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--acv-radius-md);
    font-weight: 600;
    font-size: 15px;
    transition: all var(--acv-trans);
}

.aud-cta__btn-light:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.6);
    color: #fff;
    transform: translateY(-3px);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .aud-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .aud-hero__inner { grid-template-columns: 1fr; gap: 48px; }
    .aud-hero__visual { max-width: 540px; margin: 0 auto; }
    .aud-hero__img-wrap { height: 380px; }
    .aud-hero__badge { left: 0; }
    .aud-cats { padding: 80px 0; }
    .aud-cta { padding: 44px 32px; }
}

@media (max-width: 640px) {
    .aud-grid { grid-template-columns: 1fr; }
    .aud-hero { padding: 120px 0 70px; }
    .aud-hero__stats { gap: 14px; }
    .aud-hero__cta { flex-direction: column; align-items: stretch; }
    .aud-hero__cta .acv-btn { justify-content: center; }
    .aud-hero__img-wrap { height: 300px; }
    .aud-cta { padding: 34px 22px; }
    .aud-cta__actions { flex-direction: column; align-items: stretch; }
    .aud-cta__actions .acv-btn,
    .aud-cta__actions .aud-cta__btn-light { justify-content: center; }
}

/* ================================================================
   AFYACODE VENTURES — gallery.css
   Only "gal-" prefixed classes (gallery-page-only).
   Shared utilities live in styles.css — not repeated here.
   ================================================================ */

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.gal-hero {
    padding: 148px 0 90px;
    background: linear-gradient(155deg, #eef7f5 0%, #f0f5ff 55%, #fdf6ee 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.gal-hero__orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.gal-hero__orb--1 {
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(42,157,143,0.12) 0%, transparent 70%);
    top: -120px; right: -100px;
    animation: acvFloat 8s ease-in-out infinite;
}

.gal-hero__orb--2 {
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(231,111,81,0.07) 0%, transparent 70%);
    bottom: -60px; left: -60px;
    animation: acvFloat 10s ease-in-out infinite reverse;
}

.gal-hero__inner { position: relative; z-index: 1; }

.gal-hero__title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    margin-bottom: 20px;
    color: var(--acv-dark);
    line-height: 1.1;
}

.gal-hero__subtitle {
    font-size: 1.05rem;
    color: var(--acv-text-muted);
    max-width: 640px;
    margin: 0 auto 34px;
    line-height: 1.9;
}

.gal-hero__cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════
   FILTER TABS
═══════════════════════════════════════════════════════ */
.gal-filter {
    background: var(--acv-white);
    border-bottom: 1px solid var(--acv-border);
    position: sticky;
    top: 70px;
    z-index: 100;
    box-shadow: var(--acv-shadow-sm);
}

.gal-filter__inner {
    display: flex;
    gap: 6px;
    align-items: center;
    overflow-x: auto;
    padding: 12px 0;
    scrollbar-width: none;
}

.gal-filter__inner::-webkit-scrollbar { display: none; }

.gal-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    border-radius: var(--acv-radius-pill);
    font-size: 13.5px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--acv-text-muted);
    background: transparent;
    border: 1.5px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all var(--acv-trans-fast);
}

.gal-tab i { font-size: 12px; }

.gal-tab:hover {
    color: var(--acv-primary);
    background: rgba(42,157,143,0.06);
    border-color: rgba(42,157,143,0.18);
}

.gal-tab--active {
    background: linear-gradient(135deg, var(--acv-primary), var(--acv-primary-dark));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(42,157,143,0.28);
}

.gal-tab--active:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--acv-primary-dark), var(--acv-primary));
}

/* ═══════════════════════════════════════════════════════
   GALLERY GRID SECTION
═══════════════════════════════════════════════════════ */
.gal-section {
    padding: 60px 0 80px;
    background: var(--acv-light);
}

.gal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 44px;
}

/* Gallery Item */
.gal-item {
    border-radius: var(--acv-radius-xl);
    overflow: hidden;
    background: var(--acv-white);
    box-shadow: var(--acv-shadow-sm);
    cursor: pointer;
    transition: all var(--acv-trans);
    animation: acvSlideUp 0.45s var(--acv-ease) both;
}

.gal-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--acv-shadow-lg);
}

.gal-item__img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--acv-ease);
}

.gal-item:hover .gal-item__img { transform: scale(1.06); }

.gal-item__img-wrap {
    overflow: hidden;
    position: relative;
}

.gal-item__img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,25,35,0.45) 0%, transparent 55%);
    opacity: 0;
    transition: opacity var(--acv-trans);
}

.gal-item:hover .gal-item__img-wrap::after { opacity: 1; }

.gal-item__zoom {
    position: absolute;
    bottom: 14px; right: 14px;
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--acv-primary);
    font-size: 0.85rem;
    opacity: 0;
    transform: scale(0.7);
    transition: all var(--acv-trans);
    z-index: 2;
}

.gal-item:hover .gal-item__zoom {
    opacity: 1;
    transform: scale(1);
}

.gal-item__body { padding: 18px 20px 20px; }

.gal-item__cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--acv-primary);
    margin-bottom: 7px;
}

.gal-item__body h3 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--acv-dark);
    line-height: 1.35;
}

.gal-item__body p {
    font-size: 13px;
    color: var(--acv-text-muted);
    line-height: 1.65;
}

/* Load More */
.gal-loadmore { text-align: center; }

.gal-loadmore__btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 32px;
    background: var(--acv-white);
    color: var(--acv-primary);
    border: 2px solid var(--acv-primary);
    border-radius: var(--acv-radius-md);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--acv-trans);
    box-shadow: var(--acv-shadow-sm);
}

.gal-loadmore__btn:hover {
    background: var(--acv-primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--acv-shadow-glow);
}

/* Category label map */
.gal-item__cat--success  { color: #16a34a; }
.gal-item__cat--events   { color: #7c3aed; }
.gal-item__cat--training { color: #0891b2; }
.gal-item__cat--workshops{ color: var(--acv-accent); }

/* ═══════════════════════════════════════════════════════
   VIDEO SECTION
═══════════════════════════════════════════════════════ */
.gal-videos {
    padding: 100px 0;
    background: linear-gradient(155deg, var(--acv-dark), var(--acv-dark-2));
    position: relative;
    overflow: hidden;
}

.gal-videos__pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.03) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
}

.gal-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.gal-video-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--acv-radius-xl);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--acv-trans);
}

.gal-video-item:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.gal-video-thumb {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.gal-video-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--acv-ease);
}

.gal-video-item:hover .gal-video-thumb img { transform: scale(1.06); }

.gal-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 60%);
}

.gal-play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 56px; height: 56px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--acv-primary);
    font-size: 1.1rem;
    z-index: 2;
    transition: all var(--acv-trans);
    padding-left: 4px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.gal-video-item:hover .gal-play-btn {
    background: var(--acv-primary);
    color: #fff;
    transform: translate(-50%, -50%) scale(1.15);
}

.gal-video-info { padding: 20px 22px 24px; }

.gal-video-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--acv-primary-light);
    margin-bottom: 8px;
}

.gal-video-info h3 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 7px;
    line-height: 1.35;
}

.gal-video-info p {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════
   GALLERY CTA
═══════════════════════════════════════════════════════ */
.gal-cta {
    padding: 80px 0 100px;
    background: var(--acv-light);
}

.gal-cta__box {
    background: linear-gradient(135deg, var(--acv-dark), var(--acv-dark-2));
    border-radius: var(--acv-radius-xl);
    padding: 60px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--acv-shadow-lg);
}

.gal-cta__box::before {
    content: '📸';
    position: absolute;
    top: 16px; right: 28px;
    font-size: 90px;
    opacity: 0.05;
    pointer-events: none;
}

.gal-cta__box h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #fff;
    margin-bottom: 14px;
}

.gal-cta__box p {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 540px;
    margin: 0 auto 30px;
}

.gal-cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.gal-cta__box .acv-btn--outline {
    border-color: rgba(255,255,255,0.35);
    color: rgba(255,255,255,0.85);
}

.gal-cta__box .acv-btn--outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.6);
    color: #fff;
}

/* ═══════════════════════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════════════════════ */
.gal-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.gal-lightbox--open { display: flex; }

.gal-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(6px);
    animation: acvFadeIn 0.25s ease;
}

.gal-lightbox__box {
    position: relative;
    background: var(--acv-white);
    border-radius: var(--acv-radius-xl);
    overflow: hidden;
    max-width: 800px;
    width: 92vw;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    animation: acvSlideUp 0.35s var(--acv-ease);
    z-index: 1;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.gal-lightbox__box--video {
    max-width: 900px;
    background: var(--acv-dark);
}

.gal-lightbox__close {
    position: absolute;
    top: 14px; right: 14px;
    width: 36px; height: 36px;
    background: rgba(0,0,0,0.6);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all var(--acv-trans-fast);
}

.gal-lightbox__close:hover {
    background: var(--acv-accent);
    transform: scale(1.1);
}

.gal-lightbox__img-wrap {
    width: 100%;
    max-height: 480px;
    overflow: hidden;
    flex-shrink: 0;
}

.gal-lightbox__img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

.gal-lightbox__video-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    flex-shrink: 0;
}

.gal-lightbox__info {
    padding: 24px 28px;
}

.gal-lightbox__cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--acv-primary);
    margin-bottom: 8px;
}

.gal-lightbox__info h3 {
    font-size: 1.2rem;
    color: var(--acv-dark);
    margin-bottom: 8px;
}

.gal-lightbox__box--video .gal-lightbox__info h3 { color: #fff; }
.gal-lightbox__box--video .gal-lightbox__info p  { color: rgba(255,255,255,0.65); }

.gal-lightbox__info p {
    font-size: 14px;
    color: var(--acv-text-muted);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .gal-grid { grid-template-columns: repeat(2, 1fr); }
    .gal-video-grid { grid-template-columns: repeat(2, 1fr); }
    .gal-video-grid .gal-video-item:last-child { display: none; }
}

@media (max-width: 768px) {
    .gal-hero { padding: 120px 0 70px; }
    .gal-section { padding: 50px 0 60px; }
    .gal-videos { padding: 70px 0; }
    .gal-cta { padding: 60px 0; }
    .gal-cta__box { padding: 40px 28px; }
    .gal-video-grid { grid-template-columns: 1fr; }
    .gal-video-grid .gal-video-item:last-child { display: block; }
    .gal-filter { top: 66px; }
}

@media (max-width: 576px) {
    .gal-grid { grid-template-columns: 1fr; }
    .gal-hero__cta { flex-direction: column; align-items: stretch; }
    .gal-hero__cta .acv-btn { justify-content: center; }
    .gal-cta__actions { flex-direction: column; align-items: stretch; }
    .gal-cta__actions .acv-btn { justify-content: center; }
    .gal-lightbox__img-wrap { max-height: 260px; }
}

/* ================================================================
   AFYACODE VENTURES — contact.css
   Only "cnt-" prefixed classes (contact-page-only).
   Shared utilities live in styles.css — not repeated here.
   ================================================================ */

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.cnt-hero {
    min-height: 100vh;
    padding: 148px 0 90px;
    background: linear-gradient(155deg, #eef7f5 0%, #f0f5ff 55%, #fdf6ee 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.cnt-hero__orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.cnt-hero__orb--1 {
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(42,157,143,0.12) 0%, transparent 70%);
    top: -130px; right: -100px;
    animation: acvFloat 8s ease-in-out infinite;
}

.cnt-hero__orb--2 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(231,111,81,0.07) 0%, transparent 70%);
    bottom: -60px; left: -60px;
    animation: acvFloat 10s ease-in-out infinite reverse;
}

.cnt-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cnt-hero__title {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    margin-bottom: 20px;
    color: var(--acv-dark);
    line-height: 1.1;
}

.cnt-hero__subtitle {
    font-size: 1.05rem;
    color: var(--acv-text-muted);
    margin-bottom: 34px;
    line-height: 1.85;
    max-width: 500px;
}

.cnt-hero__pills {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cnt-pill {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(42,157,143,0.14);
    border-radius: var(--acv-radius-md);
    padding: 12px 16px;
    box-shadow: var(--acv-shadow-sm);
    transition: all var(--acv-trans);
}

.cnt-pill:hover {
    transform: translateX(6px);
    box-shadow: var(--acv-shadow-md);
    border-color: rgba(42,157,143,0.3);
}

.cnt-pill i {
    width: 38px; height: 38px;
    background: linear-gradient(135deg, var(--acv-primary), var(--acv-primary-light));
    border-radius: var(--acv-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.cnt-pill strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--acv-dark);
    line-height: 1;
    margin-bottom: 2px;
}

.cnt-pill span {
    font-size: 12px;
    color: var(--acv-text-muted);
}

/* Visual */
.cnt-hero__visual { position: relative; }

.cnt-hero__img-wrap {
    border-radius: var(--acv-radius-xl);
    overflow: hidden;
    height: 480px;
    box-shadow: var(--acv-shadow-lg);
    position: relative;
}

.cnt-hero__img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--acv-ease);
}

.cnt-hero__img-wrap:hover img { transform: scale(1.04); }

.cnt-hero__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(42,157,143,0.18), rgba(231,111,81,0.07));
}

.cnt-hero__badge {
    position: absolute;
    bottom: 24px; left: -20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-radius: var(--acv-radius-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--acv-shadow-md);
    animation: acvFloat 5s ease-in-out infinite;
}

.cnt-hero__badge-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--acv-primary), var(--acv-primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.cnt-hero__badge strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--acv-dark);
}

.cnt-hero__badge span {
    font-size: 11.5px;
    color: var(--acv-text-muted);
}

/* ═══════════════════════════════════════════════════════
   CONTACT OPTIONS
═══════════════════════════════════════════════════════ */
.cnt-options {
    padding: 100px 0;
    background: var(--acv-white);
}

.cnt-options__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cnt-option-card {
    background: var(--acv-light);
    border-radius: var(--acv-radius-xl);
    padding: 32px 26px;
    border: 2px solid var(--acv-border);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all var(--acv-trans);
}

.cnt-option-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--acv-shadow-lg);
    border-color: var(--acv-primary);
    background: var(--acv-white);
}

.cnt-option-card--highlight {
    background: linear-gradient(135deg, var(--acv-dark), var(--acv-dark-2));
    border-color: transparent;
    color: #fff;
}

.cnt-option-card--highlight:hover { border-color: var(--acv-primary-light); }

.cnt-option-card__icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--acv-primary), var(--acv-primary-light));
    border-radius: var(--acv-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 6px 18px rgba(42,157,143,0.28);
    transition: transform var(--acv-trans);
    flex-shrink: 0;
}

.cnt-option-card:hover .cnt-option-card__icon { transform: rotate(-8deg) scale(1.1); }

.cnt-option-card__icon--2 { background: linear-gradient(135deg, #6366f1, #818cf8); box-shadow: 0 6px 18px rgba(99,102,241,0.28); }
.cnt-option-card__icon--3 { background: linear-gradient(135deg, #16a34a, #4ade80); box-shadow: 0 6px 18px rgba(22,163,74,0.28); }
.cnt-option-card__icon--4 { background: linear-gradient(135deg, var(--acv-accent), #f4a261); box-shadow: 0 6px 18px rgba(231,111,81,0.28); }

.cnt-option-card h3 {
    font-size: 1.1rem;
    color: var(--acv-dark);
    margin: 0;
}

.cnt-option-card--highlight h3 { color: #fff; }

.cnt-option-card > p {
    font-size: 13px;
    color: var(--acv-text-muted);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.cnt-option-card--highlight > p { color: rgba(255,255,255,0.72); }

.cnt-option-card__details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cnt-detail {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12.5px;
}

.cnt-detail i {
    color: var(--acv-primary);
    width: 16px;
    margin-top: 1px;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.cnt-option-card--highlight .cnt-detail i { color: var(--acv-primary-light); }

.cnt-detail > div { display: flex; flex-direction: column; gap: 1px; }
.cnt-detail span { font-size: 11px; color: var(--acv-text-muted); font-weight: 600; }
.cnt-option-card--highlight .cnt-detail span { color: rgba(255,255,255,0.55); }
.cnt-detail a, .cnt-detail em { font-size: 12.5px; color: var(--acv-dark); font-style: normal; font-weight: 600; }
.cnt-detail a:hover { color: var(--acv-primary); }
.cnt-option-card--highlight .cnt-detail a,
.cnt-option-card--highlight .cnt-detail em { color: rgba(255,255,255,0.9); }

.cnt-option-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: var(--acv-radius-md);
    font-size: 13.5px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all var(--acv-trans);
    background: rgba(42,157,143,0.1);
    color: var(--acv-primary);
    border: 1.5px solid rgba(42,157,143,0.2);
    margin-top: auto;
}

.cnt-option-card__btn:hover {
    background: var(--acv-primary);
    color: #fff;
    border-color: var(--acv-primary);
    transform: translateY(-2px);
}

.cnt-option-card__btn--2 { background: rgba(99,102,241,0.08); color: #6366f1; border-color: rgba(99,102,241,0.2); }
.cnt-option-card__btn--2:hover { background: #6366f1; color: #fff; border-color: #6366f1; }

.cnt-option-card__btn--3 { background: rgba(22,163,74,0.08); color: #16a34a; border-color: rgba(22,163,74,0.2); }
.cnt-option-card__btn--3:hover { background: #16a34a; color: #fff; border-color: #16a34a; }

.cnt-option-card__btn--4 {
    background: linear-gradient(135deg, var(--acv-primary), var(--acv-primary-dark));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(42,157,143,0.3);
}
.cnt-option-card__btn--4:hover {
    box-shadow: 0 8px 24px rgba(42,157,143,0.45);
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--acv-primary-dark), var(--acv-primary));
}

/* ═══════════════════════════════════════════════════════
   CONTACT FORM SECTION
═══════════════════════════════════════════════════════ */
.cnt-form-section {
    padding: 100px 0;
    background: linear-gradient(155deg, rgba(42,157,143,0.04), rgba(231,111,81,0.03));
    position: relative;
    overflow: hidden;
}

.cnt-form-section__pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(42,157,143,0.06) 1px, transparent 0);
    background-size: 36px 36px;
    pointer-events: none;
}

.cnt-form-section__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 56px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Form wrap */
.cnt-form-wrap {
    background: var(--acv-white);
    border-radius: var(--acv-radius-xl);
    padding: 44px 40px;
    box-shadow: var(--acv-shadow-lg);
}

.cnt-form-wrap__head {
    margin-bottom: 32px;
}

.cnt-form-wrap__head h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    margin: 14px 0 10px;
    color: var(--acv-dark);
    line-height: 1.2;
}

.cnt-form-wrap__head p {
    font-size: 0.95rem;
    color: var(--acv-text-muted);
    line-height: 1.75;
}

/* Form elements */
.cnt-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.cnt-form__group { margin-bottom: 20px; }
.cnt-form__row .cnt-form__group { margin-bottom: 0; }

.cnt-form__label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    color: var(--acv-text);
    margin-bottom: 8px;
}

.cnt-form__label i { color: var(--acv-primary); font-size: 0.8rem; }

.cnt-form__label span {
    color: var(--acv-accent);
    font-size: 14px;
}

.cnt-form__input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--acv-border);
    border-radius: var(--acv-radius-md);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: var(--acv-text);
    background: var(--acv-light);
    transition: all var(--acv-trans-fast);
    outline: none;
}

.cnt-form__input:focus {
    border-color: var(--acv-primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(42,157,143,0.1);
}

.cnt-form__input::placeholder { color: var(--acv-text-muted); opacity: 0.7; }

.cnt-form__select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7c8d' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }

.cnt-form__textarea {
    min-height: 140px;
    resize: vertical;
}

.cnt-form__check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
}

.cnt-form__check input[type="checkbox"] {
    width: 16px; height: 16px;
    margin-top: 2px;
    accent-color: var(--acv-primary);
    cursor: pointer;
    flex-shrink: 0;
}

.cnt-form__check label {
    font-size: 13px;
    color: var(--acv-text-muted);
    cursor: pointer;
    line-height: 1.6;
}

.cnt-form__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 32px;
    background: linear-gradient(135deg, var(--acv-primary), var(--acv-primary-dark));
    color: #fff;
    border: none;
    border-radius: var(--acv-radius-md);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--acv-trans);
    box-shadow: var(--acv-shadow-glow);
}

.cnt-form__submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(42,157,143,0.38);
}

.cnt-form__submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.cnt-form__feedback {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--acv-radius-sm);
    padding: 0;
    transition: all 0.3s ease;
}

.cnt-form__feedback--success {
    background: rgba(22,163,74,0.1);
    color: #15803d;
    border: 1px solid rgba(22,163,74,0.25);
    padding: 12px 16px;
}

.cnt-form__feedback--error {
    background: rgba(231,111,81,0.1);
    color: #c0390b;
    border: 1px solid rgba(231,111,81,0.25);
    padding: 12px 16px;
}

/* Side Info Panel */
.cnt-form-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cnt-form-side__card {
    background: var(--acv-white);
    border-radius: var(--acv-radius-xl);
    padding: 24px 22px;
    box-shadow: var(--acv-shadow-sm);
    border: 1px solid var(--acv-border);
    transition: all var(--acv-trans);
}

.cnt-form-side__card:hover {
    box-shadow: var(--acv-shadow-md);
    border-color: rgba(42,157,143,0.2);
}

.cnt-form-side__card h3 {
    font-size: 1rem;
    color: var(--acv-dark);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

.cnt-form-side__card h3 i { color: var(--acv-primary); font-size: 0.9rem; }

.cnt-form-side__card > p {
    font-size: 13.5px;
    color: var(--acv-text);
    font-weight: 600;
    margin-bottom: 4px;
}

.cnt-form-side__sub {
    font-size: 12px !important;
    color: var(--acv-text-muted) !important;
    font-weight: 400 !important;
    line-height: 1.6;
}

/* Country tags */
.cnt-country-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.cnt-country-tags span {
    background: var(--acv-light);
    border: 1px solid var(--acv-border);
    border-radius: var(--acv-radius-sm);
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--acv-text);
    transition: all var(--acv-trans-fast);
}

.cnt-country-tags span:hover {
    background: rgba(42,157,143,0.08);
    border-color: rgba(42,157,143,0.25);
}

/* Working hours */
.cnt-hours {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.cnt-hours > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--acv-border);
}

.cnt-hours > div:last-child { border-bottom: none; padding-bottom: 0; }
.cnt-hours span { color: var(--acv-text-muted); }
.cnt-hours strong { color: var(--acv-dark); font-weight: 700; font-size: 12px; }

/* Social links in side */
.cnt-form-side__social {
    background: var(--acv-white);
    border-radius: var(--acv-radius-xl);
    padding: 20px 22px;
    box-shadow: var(--acv-shadow-sm);
    border: 1px solid var(--acv-border);
}

.cnt-form-side__social p {
    font-size: 12px;
    color: var(--acv-text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.cnt-socials {
    display: flex;
    gap: 10px;
}

.cnt-socials a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--acv-light);
    border: 1px solid var(--acv-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--acv-text-muted);
    font-size: 14px;
    transition: all var(--acv-trans-fast);
}

.cnt-socials a:hover {
    background: var(--acv-primary);
    border-color: var(--acv-primary);
    color: #fff;
    transform: translateY(-3px);
}

/* ═══════════════════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════════════════ */
.cnt-faq {
    padding: 100px 0;
    background: var(--acv-white);
}

.cnt-faq__grid {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cnt-faq-item {
    border-radius: var(--acv-radius-md);
    border: 1.5px solid var(--acv-border);
    overflow: hidden;
    transition: border-color var(--acv-trans-fast);
}

.cnt-faq-item:hover,
.cnt-faq-item--open { border-color: rgba(42,157,143,0.35); }

.cnt-faq-item__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--acv-dark);
    transition: background var(--acv-trans-fast);
}

.cnt-faq-item__q:hover { background: rgba(42,157,143,0.04); }
.cnt-faq-item--open .cnt-faq-item__q { background: rgba(42,157,143,0.06); color: var(--acv-primary); }

.cnt-faq-item__q i {
    color: var(--acv-text-muted);
    font-size: 12px;
    flex-shrink: 0;
    transition: transform 0.3s var(--acv-ease);
}

.cnt-faq-item--open .cnt-faq-item__q i {
    transform: rotate(180deg);
    color: var(--acv-primary);
}

.cnt-faq-item__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--acv-ease), padding 0.3s ease;
    padding: 0 22px;
}

.cnt-faq-item--open .cnt-faq-item__a {
    max-height: 300px;
    padding: 0 22px 18px;
}

.cnt-faq-item__a p {
    font-size: 14px;
    color: var(--acv-text-muted);
    line-height: 1.8;
    border-top: 1px solid var(--acv-border);
    padding-top: 16px;
}

/* ═══════════════════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════════════════ */
.cnt-cta {
    padding: 60px 0 100px;
    background: var(--acv-light);
}

.cnt-cta__box {
    background: linear-gradient(135deg, var(--acv-dark), var(--acv-dark-2));
    border-radius: var(--acv-radius-xl);
    padding: 60px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--acv-shadow-lg);
}

.cnt-cta__box::before {
    content: '🌍';
    position: absolute;
    top: 16px; right: 28px;
    font-size: 90px;
    opacity: 0.05;
    pointer-events: none;
}

.cnt-cta__box h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #fff;
    margin-bottom: 14px;
}

.cnt-cta__box > p {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto 28px;
}

.cnt-cta__features {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.cnt-cta__feat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
}

.cnt-cta__feat i { color: var(--acv-primary-light); }

.cnt-cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cnt-cta__call-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    color: rgba(255,255,255,0.85);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: var(--acv-radius-md);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    transition: all var(--acv-trans);
}

.cnt-cta__call-btn:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.6);
    color: #fff;
    transform: translateY(-3px);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .cnt-options__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .cnt-hero__inner { grid-template-columns: 1fr; gap: 48px; }
    .cnt-hero__visual { max-width: 540px; margin: 0 auto; }
    .cnt-hero__img-wrap { height: 380px; }
    .cnt-hero__badge { left: 0; }
    .cnt-form-section__inner { grid-template-columns: 1fr; gap: 36px; }
    .cnt-form-side { flex-direction: row; flex-wrap: wrap; }
    .cnt-form-side__card { flex: 1; min-width: 220px; }
    .cnt-form-side__social { width: 100%; }
}

@media (max-width: 768px) {
    .cnt-hero { padding: 120px 0 70px; }
    .cnt-options { padding: 70px 0; }
    .cnt-form-section { padding: 70px 0; }
    .cnt-faq { padding: 70px 0; }
    .cnt-cta { padding: 50px 0 80px; }
    .cnt-form-wrap { padding: 30px 24px; }
    .cnt-cta__box { padding: 44px 28px; }
}

@media (max-width: 640px) {
    .cnt-options__grid { grid-template-columns: 1fr; }
    .cnt-form__row { grid-template-columns: 1fr; gap: 0; }
    .cnt-hero__pills { gap: 10px; }
    .cnt-cta__actions { flex-direction: column; align-items: stretch; }
    .cnt-cta__actions .acv-btn,
    .cnt-cta__actions .cnt-cta__call-btn { justify-content: center; }
    .cnt-form-side { flex-direction: column; }
}


/* ================================================================
   AFYACODE VENTURES — privacy.css
   Only "prv-" prefixed classes (privacy-page-only).
   Shared utilities live in styles.css — not repeated here.
   ================================================================ */

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.prv-hero {
    padding: 148px 0 90px;
    background: linear-gradient(155deg, #eef7f5 0%, #f0f5ff 55%, #fdf6ee 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.prv-hero__orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.prv-hero__orb--1 { width: 480px; height: 480px; background: radial-gradient(circle, rgba(42,157,143,0.12) 0%, transparent 70%); top: -120px; right: -100px; animation: acvFloat 8s ease-in-out infinite; }
.prv-hero__orb--2 { width: 280px; height: 280px; background: radial-gradient(circle, rgba(231,111,81,0.07) 0%, transparent 70%); bottom: -60px; left: -60px; animation: acvFloat 10s ease-in-out infinite reverse; }

.prv-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.prv-hero__title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    margin-bottom: 18px;
    color: var(--acv-dark);
    line-height: 1.1;
}

.prv-hero__subtitle {
    font-size: 1.05rem;
    color: var(--acv-text-muted);
    margin-bottom: 30px;
    line-height: 1.85;
}

.prv-hero__meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.prv-meta-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(42,157,143,0.14);
    border-radius: var(--acv-radius-md);
    padding: 10px 14px;
    box-shadow: var(--acv-shadow-sm);
    transition: all var(--acv-trans-fast);
}
.prv-meta-pill:hover { transform: translateX(5px); box-shadow: var(--acv-shadow-md); }

.prv-meta-pill i { color: var(--acv-primary); font-size: 1rem; width: 20px; text-align: center; flex-shrink: 0; }
.prv-meta-pill strong { display: block; font-size: 13px; font-weight: 700; color: var(--acv-dark); line-height: 1; margin-bottom: 2px; }
.prv-meta-pill span { font-size: 11.5px; color: var(--acv-text-muted); }

.prv-hero__visual { position: relative; }

.prv-hero__img-wrap {
    border-radius: var(--acv-radius-xl);
    overflow: hidden;
    height: 420px;
    box-shadow: var(--acv-shadow-lg);
    position: relative;
}
.prv-hero__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--acv-ease); }
.prv-hero__img-wrap:hover img { transform: scale(1.04); }
.prv-hero__img-overlay { position: absolute; inset: 0; background: linear-gradient(45deg, rgba(42,157,143,0.2), rgba(231,111,81,0.07)); }

.prv-hero__badge {
    position: absolute;
    bottom: 22px; left: -20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-radius: var(--acv-radius-md);
    padding: 13px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--acv-shadow-md);
    animation: acvFloat 5s ease-in-out infinite;
}
.prv-hero__badge-icon { width: 38px; height: 38px; background: linear-gradient(135deg, var(--acv-primary), var(--acv-primary-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.95rem; flex-shrink: 0; }
.prv-hero__badge strong { display: block; font-size: 13px; font-weight: 700; color: var(--acv-dark); }
.prv-hero__badge span { font-size: 11.5px; color: var(--acv-text-muted); }

/* ═══════════════════════════════════════════════════════
   BODY LAYOUT
═══════════════════════════════════════════════════════ */
.prv-body {
    padding: 80px 0 100px;
    background: var(--acv-light);
}

.prv-body__inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
}

/* ═══════════════════════════════════════════════════════
   SIDEBAR
═══════════════════════════════════════════════════════ */
.prv-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.prv-sidebar__nav {
    background: var(--acv-white);
    border-radius: var(--acv-radius-xl);
    padding: 26px 22px;
    box-shadow: var(--acv-shadow-md);
    border: 1px solid var(--acv-border);
}

.prv-sidebar__nav h3 {
    font-size: 0.95rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: var(--acv-dark);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.prv-sidebar__nav h3 i { color: var(--acv-primary); }

.prv-sidebar__nav ul { display: flex; flex-direction: column; gap: 4px; }

.prv-nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: var(--acv-radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--acv-text-muted);
    transition: all var(--acv-trans-fast);
}

.prv-nav-link i { font-size: 9px; color: var(--acv-border); transition: color var(--acv-trans-fast); }

.prv-nav-link:hover,
.prv-nav-link--active {
    background: rgba(42,157,143,0.07);
    color: var(--acv-primary);
}

.prv-nav-link:hover i,
.prv-nav-link--active i { color: var(--acv-primary); }

.prv-sidebar__cta {
    background: linear-gradient(135deg, var(--acv-dark), var(--acv-dark-2));
    border-radius: var(--acv-radius-xl);
    padding: 22px 20px;
    text-align: center;
}

.prv-sidebar__cta p {
    font-size: 13px;
    color: rgba(255,255,255,0.72);
    margin-bottom: 14px;
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   POLICY CONTENT
═══════════════════════════════════════════════════════ */
.prv-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.prv-section {
    background: var(--acv-white);
    border-radius: var(--acv-radius-xl);
    padding: 40px 36px;
    margin-bottom: 24px;
    box-shadow: var(--acv-shadow-sm);
    border: 1px solid var(--acv-border);
    scroll-margin-top: 100px;
    transition: box-shadow var(--acv-trans);
}

.prv-section:hover { box-shadow: var(--acv-shadow-md); }

.prv-section__head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--acv-border);
}

.prv-section__num {
    font-family: 'Nunito', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--acv-primary-light);
    opacity: 0.4;
    line-height: 1;
    flex-shrink: 0;
}

.prv-section__head h2 {
    font-size: 1.4rem;
    color: var(--acv-dark);
    margin: 0;
}

.prv-section > p {
    font-size: 0.97rem;
    color: var(--acv-text-muted);
    line-height: 1.85;
    margin-bottom: 22px;
}

.prv-section h3 {
    font-size: 1.05rem;
    color: var(--acv-dark);
    margin: 22px 0 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

/* Lists */
.prv-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 4px;
}

.prv-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--acv-text);
    line-height: 1.65;
    position: relative;
    padding-left: 18px;
}

.prv-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--acv-primary);
    font-weight: 700;
}

.prv-list--sm li { font-size: 13px; }

/* Notice boxes */
.prv-notice {
    background: rgba(42,157,143,0.07);
    border: 1px solid rgba(42,157,143,0.2);
    border-left: 4px solid var(--acv-primary);
    border-radius: 0 var(--acv-radius-md) var(--acv-radius-md) 0;
    padding: 16px 18px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin: 20px 0;
}

.prv-notice--warning {
    background: rgba(231,111,81,0.07);
    border-color: rgba(231,111,81,0.2);
    border-left-color: var(--acv-accent);
}

.prv-notice i { color: var(--acv-primary); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.prv-notice--warning i { color: var(--acv-accent); }
.prv-notice p { font-size: 13.5px; color: var(--acv-text); line-height: 1.75; margin: 0; }

/* ═══════════════════════════════════════════════════════
   DATA COLLECTION CARDS
═══════════════════════════════════════════════════════ */
.prv-data-cards { display: flex; flex-direction: column; gap: 16px; }

.prv-data-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--acv-light);
    border: 1px solid var(--acv-border);
    border-radius: var(--acv-radius-md);
    padding: 20px 18px;
    transition: all var(--acv-trans-fast);
}

.prv-data-card:hover { border-color: rgba(42,157,143,0.25); box-shadow: var(--acv-shadow-sm); }

.prv-data-card__icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--acv-primary), var(--acv-primary-light));
    border-radius: var(--acv-radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.1rem; flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(42,157,143,0.25);
}
.prv-data-card__icon--2 { background: linear-gradient(135deg, #6366f1, #818cf8); box-shadow: 0 4px 12px rgba(99,102,241,0.25); }
.prv-data-card__icon--3 { background: linear-gradient(135deg, #0891b2, #22d3ee); box-shadow: 0 4px 12px rgba(8,145,178,0.25); }

.prv-data-card h4 { font-size: 0.95rem; color: var(--acv-dark); margin-bottom: 6px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; }
.prv-data-card > div > p { font-size: 13px; color: var(--acv-text-muted); margin-bottom: 10px; }

/* ═══════════════════════════════════════════════════════
   USE GRID
═══════════════════════════════════════════════════════ */
.prv-use-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

.prv-use-card {
    background: var(--acv-light);
    border: 1px solid var(--acv-border);
    border-radius: var(--acv-radius-md);
    padding: 18px 16px;
    transition: all var(--acv-trans-fast);
    text-align: center;
}

.prv-use-card:hover { border-color: rgba(42,157,143,0.25); transform: translateY(-3px); box-shadow: var(--acv-shadow-sm); }

.prv-use-card__icon { width: 44px; height: 44px; background: linear-gradient(135deg, var(--acv-primary), var(--acv-primary-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1rem; margin: 0 auto 12px; box-shadow: 0 4px 12px rgba(42,157,143,0.25); transition: transform var(--acv-trans); }
.prv-use-card:hover .prv-use-card__icon { transform: rotate(-8deg) scale(1.1); }

.prv-use-card h4 { font-size: 0.9rem; color: var(--acv-dark); margin-bottom: 6px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; }
.prv-use-card p { font-size: 12px; color: var(--acv-text-muted); line-height: 1.6; }

.prv-legal-basis {
    background: linear-gradient(135deg, rgba(42,157,143,0.05), rgba(231,111,81,0.03));
    border-radius: var(--acv-radius-md);
    padding: 20px 18px;
    border: 1px solid rgba(42,157,143,0.12);
}

/* ═══════════════════════════════════════════════════════
   SHARING TABLE
═══════════════════════════════════════════════════════ */
.prv-table { border-radius: var(--acv-radius-md); overflow: hidden; border: 1px solid var(--acv-border); margin-bottom: 20px; }

.prv-table__row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0;
}

.prv-table__row--head {
    background: linear-gradient(135deg, var(--acv-primary), var(--acv-primary-dark));
    color: #fff;
    font-weight: 700;
    font-size: 13px;
}

.prv-table__row:not(.prv-table__row--head) { border-top: 1px solid var(--acv-border); }
.prv-table__row:not(.prv-table__row--head):nth-child(even) { background: var(--acv-light); }
.prv-table__row:not(.prv-table__row--head):hover { background: rgba(42,157,143,0.04); }

.prv-table__row > div {
    padding: 14px 18px;
    font-size: 13.5px;
    color: var(--acv-text);
    line-height: 1.65;
}

.prv-table__row--head > div { color: #fff; padding: 12px 18px; }
.prv-table__row > div:first-child { border-right: 1px solid var(--acv-border); }
.prv-table__row--head > div:first-child { border-right-color: rgba(255,255,255,0.2); }

/* ═══════════════════════════════════════════════════════
   SECURITY
═══════════════════════════════════════════════════════ */
.prv-security-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }

.prv-security-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--acv-light);
    border: 1px solid var(--acv-border);
    border-radius: var(--acv-radius-md);
    padding: 16px 14px;
    transition: all var(--acv-trans-fast);
}
.prv-security-item:hover { border-color: rgba(42,157,143,0.25); transform: translateY(-3px); box-shadow: var(--acv-shadow-sm); }
.prv-security-item > i { color: var(--acv-primary); font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; width: 20px; }
.prv-security-item h4 { font-size: 0.9rem; color: var(--acv-dark); margin-bottom: 4px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; }
.prv-security-item p { font-size: 12.5px; color: var(--acv-text-muted); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════
   RIGHTS
═══════════════════════════════════════════════════════ */
.prv-rights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 24px; }

.prv-right-card {
    background: var(--acv-light);
    border: 1px solid var(--acv-border);
    border-radius: var(--acv-radius-md);
    padding: 20px 16px;
    text-align: center;
    transition: all var(--acv-trans-fast);
}

.prv-right-card:hover { border-color: rgba(42,157,143,0.28); transform: translateY(-4px); box-shadow: var(--acv-shadow-md); }

.prv-right-card__icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--acv-primary), var(--acv-primary-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1rem; margin: 0 auto 12px; box-shadow: 0 4px 12px rgba(42,157,143,0.25); transition: transform var(--acv-trans); }
.prv-right-card:hover .prv-right-card__icon { transform: rotate(-8deg) scale(1.1); }
.prv-right-card h4 { font-size: 0.88rem; color: var(--acv-dark); margin-bottom: 6px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; }
.prv-right-card p { font-size: 12px; color: var(--acv-text-muted); line-height: 1.6; }

/* Process steps */
.prv-process { background: linear-gradient(135deg, rgba(42,157,143,0.05), rgba(231,111,81,0.03)); border-radius: var(--acv-radius-md); padding: 22px 20px; border: 1px solid rgba(42,157,143,0.12); }
.prv-process h3 { font-size: 1rem; color: var(--acv-dark); margin-bottom: 8px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; }
.prv-process > p { font-size: 13.5px; color: var(--acv-text-muted); margin-bottom: 16px; }
.prv-process a { color: var(--acv-primary); font-weight: 600; }
.prv-process a:hover { text-decoration: underline; }

.prv-steps { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.prv-step { display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; min-width: 80px; }
.prv-step__num { width: 36px; height: 36px; background: linear-gradient(135deg, var(--acv-primary), var(--acv-primary-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 14px; font-family: 'Nunito', sans-serif; }
.prv-step p { font-size: 11.5px; color: var(--acv-text-muted); line-height: 1.4; }
.prv-step__arrow { color: var(--acv-primary-light); font-size: 0.85rem; flex-shrink: 0; opacity: 0.6; }

/* ═══════════════════════════════════════════════════════
   COOKIES
═══════════════════════════════════════════════════════ */
.prv-cookie-types { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }

.prv-cookie-type {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: var(--acv-light);
    border: 1px solid var(--acv-border);
    border-radius: var(--acv-radius-md);
    padding: 16px 18px;
    position: relative;
    transition: all var(--acv-trans-fast);
}
.prv-cookie-type:hover { border-color: rgba(42,157,143,0.25); }
.prv-cookie-type--essential { border-left: 4px solid var(--acv-primary); }

.prv-cookie-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--acv-primary-dark);
    background: rgba(42,157,143,0.1);
    border: 1px solid rgba(42,157,143,0.2);
    border-radius: var(--acv-radius-pill);
    padding: 2px 9px;
    align-self: flex-start;
}
.prv-cookie-badge--opt { color: var(--acv-text-muted); background: var(--acv-border); border-color: transparent; }

.prv-cookie-type h4 { font-size: 0.92rem; color: var(--acv-dark); font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.prv-cookie-type h4 i { color: var(--acv-primary); font-size: 0.85rem; }
.prv-cookie-type p { font-size: 13px; color: var(--acv-text-muted); line-height: 1.65; }

.prv-browser-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }

.prv-browser-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: var(--acv-radius-pill);
    font-size: 13px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--acv-white);
    color: var(--acv-text);
    border: 1.5px solid var(--acv-border);
    transition: all var(--acv-trans-fast);
}
.prv-browser-btn:hover { background: var(--acv-primary); color: #fff; border-color: var(--acv-primary); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════
   CONTACT IN POLICY
═══════════════════════════════════════════════════════ */
.prv-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 22px; }

.prv-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--acv-light);
    border: 1px solid var(--acv-border);
    border-radius: var(--acv-radius-md);
    padding: 16px 14px;
    transition: all var(--acv-trans-fast);
}
.prv-contact-item:hover { border-color: rgba(42,157,143,0.25); transform: translateY(-2px); }

.prv-contact-item__icon { width: 38px; height: 38px; background: linear-gradient(135deg, var(--acv-primary), var(--acv-primary-light)); border-radius: var(--acv-radius-sm); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.9rem; flex-shrink: 0; }

.prv-contact-item h4 { font-size: 12px; font-weight: 700; color: var(--acv-text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 3px; font-family: 'Plus Jakarta Sans', sans-serif; }
.prv-contact-item a, .prv-contact-item p { font-size: 13.5px; color: var(--acv-dark); font-weight: 600; }
.prv-contact-item a:hover { color: var(--acv-primary); }

.prv-dpo {
    background: linear-gradient(135deg, rgba(42,157,143,0.06), rgba(231,111,81,0.03));
    border-radius: var(--acv-radius-md);
    padding: 20px 18px;
    border: 1px solid rgba(42,157,143,0.14);
    margin-bottom: 20px;
}
.prv-dpo h3 { font-size: 1rem; color: var(--acv-dark); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; }
.prv-dpo h3 i { color: var(--acv-primary); }
.prv-dpo p { font-size: 13.5px; color: var(--acv-text-muted); line-height: 1.75; }
.prv-dpo a { color: var(--acv-primary); font-weight: 600; }
.prv-dpo a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .prv-body__inner { grid-template-columns: 240px 1fr; gap: 32px; }
    .prv-use-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .prv-hero__inner { grid-template-columns: 1fr; gap: 48px; }
    .prv-hero__visual { max-width: 540px; margin: 0 auto; }
    .prv-hero__img-wrap { height: 360px; }
    .prv-hero__badge { left: 0; }
    .prv-body__inner { grid-template-columns: 1fr; }
    .prv-sidebar { position: static; flex-direction: row; flex-wrap: wrap; gap: 16px; }
    .prv-sidebar__nav { flex: 1; min-width: 260px; }
    .prv-sidebar__nav ul { flex-direction: row; flex-wrap: wrap; gap: 4px 8px; }
    .prv-sidebar__cta { flex: 1; min-width: 200px; }
    .prv-rights-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .prv-hero { padding: 120px 0 70px; }
    .prv-body { padding: 60px 0 80px; }
    .prv-section { padding: 28px 22px; }
    .prv-use-grid { grid-template-columns: 1fr; }
    .prv-security-grid { grid-template-columns: 1fr; }
    .prv-contact-grid { grid-template-columns: 1fr; }
    .prv-steps { justify-content: center; }
    .prv-step__arrow { display: none; }
    .prv-table__row { grid-template-columns: 1fr; }
    .prv-table__row > div:first-child { border-right: none; border-bottom: 1px solid var(--acv-border); font-weight: 700; }
}

@media (max-width: 576px) {
    .prv-rights-grid { grid-template-columns: 1fr 1fr; }
    .prv-use-grid { grid-template-columns: 1fr; }
    .prv-hero__meta { gap: 8px; }
}