/* ============================================
   Vetzu – Light Theme, Creative & Modern
   ============================================ */

:root {
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --bg-card-hover: #ffffff;
    --bg-muted: #f1f5f9;
    --bg-dark: #0f172a;
    --primary: #0EA095;
    --primary-light: #14b8a6;
    --primary-dim: rgba(14, 160, 149, 0.12);
    --accent: #026D81;
    --accent-dim: rgba(2, 109, 129, 0.12);
    --coral: #e11d48;
    --coral-dim: rgba(225, 29, 72, 0.1);
    --text: #0f172a;
    --text-muted: #64748b;
    --border: rgba(15, 23, 42, 0.08);
    --shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 25px 50px -12px rgba(15, 23, 42, 0.12);
    --font-head: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
section {
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
}

/* Fix stretched font appearance - crisp, natural proportions */
body.theme-light {
    font-family: var(--font-body);
    font-stretch: normal;
    letter-spacing: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    background: var(--bg-main);
    color: var(--text);
    overflow-x: hidden;
    overflow-x: clip;
    line-height: 1.6;
    width: 100%;
    max-width: 100%;
    position: relative;
    min-width: 0;
}

/* Paragraphs and list items - site-wide font size */
p, li {
    font-size: 16px;
}

/* Headings - no stretch, minimal letter-spacing */
h1, h2, h3, h4, h5, h6,
.section-title, .hero-title, .vetzu-logo {
    font-stretch: normal;
    letter-spacing: -0.02em;
}

/* Background orbs - light theme (softer) */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
    animation: orbFloat 20s ease-in-out infinite;
}
.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}
.orb-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--primary-dim) 0%, transparent 70%);
    bottom: -100px;
    left: -80px;
    animation-delay: -8s;
}
.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--coral-dim) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(25px, -25px) scale(1.03); }
    66% { transform: translate(-15px, 15px) scale(0.97); }
}

.noise-overlay {
    position: fixed;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.gradient-chars {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ========== Creative Animations ========== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
    0% { background-position: 150% 0; }
    100% { background-position: -50% 0; }
}
@keyframes pulse-soft {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.03); }
}
@keyframes float-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 20px var(--primary-dim); }
    50% { box-shadow: 0 0 35px var(--primary-dim); }
}
@keyframes border-glow {
    0%, 100% { border-color: var(--border); }
    50% { border-color: var(--primary); }
}

/* Button shine animation on hover */
.btn-hero-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, transparent 0%, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%, transparent 100%);
    background-size: 200% 100%;
    background-position: 150% 0;
    transition: none;
    pointer-events: none;
}
.btn-hero-primary:hover::after {
    animation: shimmer 0.7s ease forwards;
}

/* Stat items - icon float */
.stat-ico {
    animation: float-icon 3s ease-in-out infinite;
}
.stat-item:nth-child(1) .stat-ico { animation-delay: 0s; }
.stat-item:nth-child(2) .stat-ico { animation-delay: 0.2s; }
.stat-item:nth-child(3) .stat-ico { animation-delay: 0.4s; }
.stat-item:nth-child(4) .stat-ico { animation-delay: 0.6s; }
.stat-item:nth-child(5) .stat-ico { animation-delay: 0.8s; }

/* Pillar step - hover */
.pillar-step:hover .pillar-step-content {
    animation: pulse-soft 0.4s ease;
}

/* Industry tiles - staggered float on hover */
.industry-tile-body i {
    animation: float-icon 4s ease-in-out infinite;
}
.industry-tile:hover .industry-tile-body i {
    animation: none;
}

/* Testimonial card - subtle border glow on hover */
.testimonial-card-v:hover {
    animation: border-glow 2s ease-in-out infinite;
}

/* CTA box - soft glow pulse */
.cta-box-v:hover {
    animation: glow-pulse 2s ease-in-out infinite;
}

/* Capability items - hover */
.cap-item:hover .cap-icon {
    transition: transform 0.3s var(--transition-bounce);
}

/* Step content - bounce on hover */
.step-content-v:hover {
    transition: transform 0.4s var(--transition-bounce), box-shadow 0.4s ease;
}

/* ========== Navigation - Light ========== */
.vetzu-nav {
    background: rgba(248, 250, 252, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
    transition: var(--transition);
    width: 100%;
    max-width: 100%;
    left: 0;
    right: 0;
    overflow: visible;
    z-index: 1020;
}
.vetzu-nav .container {
    max-width: 100%;
}
@media (max-width: 991.98px) {
    .vetzu-nav,
    .vetzu-nav:has(.navbar-collapse.show) {
        background: rgb(248, 250, 252);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .vetzu-nav .navbar-brand { margin-right: 0; }
}
.vetzu-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
}
.vetzu-logo {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.75rem;
    letter-spacing: -0.02em;
    color: var(--text);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.vetzu-logo img {
    height: 36px;
    width: auto;
    display: block;
    object-fit: contain;
}
@media (max-width: 991.98px) {
    .vetzu-logo img { height: 32px; }
}
.logo-mark { color: var(--primary); margin-right: 2px; }
.logo-text { color: inherit; }

.navbar-toggler {
    border: 1px solid var(--border);
    padding: 0.5rem;
}
.navbar-toggler:focus { box-shadow: 0 0 0 2px var(--primary-dim); }
.toggler-icon {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    transition: var(--transition);
}

.nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: var(--transition);
}
.nav-link:hover { color: var(--text) !important; }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    transition: transform var(--transition);
}
.nav-link:hover::after { transform: translateX(-50%) scaleX(1); }

.btn-nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 50px;
    margin-left: 0.5rem;
    box-shadow: 0 4px 14px var(--primary-dim);
}
.btn-nav-cta::after { display: none !important; }
.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-dim);
    color: #fff !important;
}

/* Services mega dropdown - hover, 3 rows */
.nav-item.dropdown .dropdown-toggle::after { margin-left: 0.35em; }
.nav-item.dropdown .dropdown-menu { display: none; }
.nav-item.dropdown.show .dropdown-menu { display: block; }
.dropdown-menu-mega {
    width: min(1080px, 95vw);
    max-width: 95vw;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
    padding: 1.5rem 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    margin-top: 0.5rem;
}
.dropdown-mega-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0 2rem;
    padding: 0 1.5rem;
}
.dropdown-mega-col {
    flex: 1 1 220px;
    min-width: 220px;
}
.dropdown-mega-col h6 {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid var(--border);
}
.dropdown-mega-col a {
    display: block;
    padding: 0.4rem 0;
    font-size: 0.95rem;
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
    border-radius: 6px;
}
.dropdown-mega-col a:hover { color: var(--primary); padding-left: 4px; }
.dropdown-mega-empty {
    display: block;
    padding: 0.3rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}
@media (max-width: 991.98px) {
    .dropdown-menu-mega { width: 100%; left: 0 !important; transform: none; }
    .dropdown-mega-inner { flex-direction: column; }
    .nav-item.dropdown .dropdown-menu { display: none; }
    .nav-item.dropdown.show .dropdown-menu { display: block; }
}

/* Mobile: sidebar menu + overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    z-index: 1030;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.nav-overlay.is-open {
    display: block;
    opacity: 1;
}
body.nav-menu-open,
html:has(body.nav-menu-open) {
    overflow: hidden !important;
}
@media (max-width: 991.98px) {
    .vetzu-nav:has(.navbar-collapse.show) {
        z-index: 1040;
    }
}
@media (min-width: 992px) {
    .nav-overlay { display: none !important; }
    .nav-sidebar-close { display: none !important; }
}
@media (max-width: 991.98px) {
    .vetzu-nav {
        padding-left: 0;
        padding-right: 0;
    }
    .vetzu-nav .container {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas: "brand toggle";
        align-items: center;
        gap: 0.75rem;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding-left: 1rem;
        padding-right: 1rem;
        margin: 0 auto;
    }
    .vetzu-nav .navbar-brand {
        grid-area: brand;
        font-size: clamp(1.05rem, 4.5vw, 1.35rem);
        white-space: nowrap;
        min-width: 0;
        overflow: visible;
        padding: 0.25rem 0;
    }
    .vetzu-nav .navbar-toggler {
        grid-area: toggle;
        padding: 0.5rem 0.65rem;
        flex-shrink: 0;
    }
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: 0;
        width: min(300px, 82vw);
        max-width: 100%;
        height: 100vh;
        height: 100dvh;
        background: #ffffff;
        box-shadow: -8px 0 32px rgba(15, 23, 42, 0.15);
        z-index: 1;
        padding: 3.75rem 1rem 2rem;
        overflow-y: auto;
        overflow-x: hidden;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        border-left: 1px solid var(--border);
        will-change: transform;
    }
    .navbar-collapse.show {
        transform: translateX(0);
    }
    .nav-sidebar-title {
        display: block;
        font-family: var(--font-head);
        font-weight: 700;
        font-size: 1.35rem;
        text-align: left;
        margin: 0 0 1rem 0;
        padding: 0 0 0 0.75rem;
        color: var(--text);
        line-height: 1.3;
    }
    .navbar-collapse .navbar-nav {
        flex-direction: column;
        align-items: stretch;
        margin: 0;
        text-align: left;
    }
    .navbar-collapse .navbar-nav .ms-auto { margin-left: 0 !important; }
    .navbar-collapse .nav-item {
        border-bottom: 1px solid var(--border);
    }
    .navbar-collapse .nav-item:last-child { border-bottom: none !important; margin-bottom: 0; padding-bottom: 0; }
    .navbar-collapse .nav-item:last-child .dropdown-menu-mega { border: none !important; margin-bottom: 0; padding-bottom: 0; }
    .navbar-collapse .navbar-nav { padding-bottom: 0; margin-bottom: 0; }
    .navbar-collapse .navbar-nav > .nav-item:last-child { border-bottom: none !important; }
    .navbar-collapse .nav-link {
        padding: 1rem 0.75rem !important;
        font-size: 1rem;
        color: var(--text) !important;
        text-align: left;
    }
    .navbar-collapse .nav-link::after { display: none; }
    .navbar-collapse .btn-nav-cta {
        margin-left: 0;
        margin-top: 0.75rem;
        text-align: center;
        display: block;
    }
    .navbar-collapse .dropdown-menu-mega {
        position: static !important;
        width: 100% !important;
        box-shadow: none;
        border: none;
        padding: 0.5rem 0 0.5rem 1rem;
        margin-top: 0.25rem;
        background: var(--bg-muted);
        border-radius: var(--radius);
    }
    .navbar-collapse .dropdown-mega-inner { flex-direction: column; gap: 0.75rem; }
    .navbar-collapse .dropdown-mega-col h6 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        color: var(--text-black);
    }
    .navbar-collapse .dropdown-mega-col a {
        padding: 0.5rem 0;
        font-size: 0.9rem;
        color: var(--text);
    }
    .nav-sidebar-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        background: #fff;
        color: var(--text);
        cursor: pointer;
        transition: var(--transition);
        z-index: 2;
    }
    .nav-sidebar-close:hover {
        background: var(--primary-dim);
        color: var(--primary);
        border-color: var(--primary);
    }
}

/* ========== Hero + Background Video ========== */
.hero-vetzu {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #0f172a;
    width: 100%;
    left: 0;
    right: 0;
    overflow: hidden;
}
.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    min-height: 100vh;
    transform: translate(-50%, -50%);
    object-fit: cover;
    display: block;
    z-index: 0;
    max-width: none;
}
.hero-video-wrap .hero-bg-video[data-playing="true"] {
    z-index: 1;
}
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.5) 50%, rgba(15, 23, 42, 0.7) 100%);
    z-index: 1;
}

.hero-content-wrap {
    position: relative;
    z-index: 2;
}
.hero-vetzu .hero-badge {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    backdrop-filter: blur(8px);
}
.hero-vetzu .hero-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.hero-vetzu .hero-title .gradient-chars {
    background: linear-gradient(135deg, #5eead4, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-vetzu .hero-desc {
    color: rgba(255, 255, 255, 0.9);
    max-width: 520px;
    margin-bottom: 2rem;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}
.hero-vetzu .btn-hero-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    box-shadow: 0 8px 30px rgba(13, 148, 136, 0.4);
}
.hero-vetzu .btn-hero-outline {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}
.hero-vetzu .btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    color: #fff;
}

.animate-float { animation: floatBadge 3s ease-in-out infinite; }
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.hero-title .line { display: block; }
.hero-title .line-2 { padding-left: 0.15em; }

.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }
.magnetic-wrap { display: inline-block; transition: transform var(--transition); }
.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.btn-hero .btn-inner { position: relative; z-index: 2; }
.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    box-shadow: 0 4px 20px var(--primary-dim);
}
.btn-hero-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    opacity: 0;
    transition: opacity var(--transition);
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--primary-dim);
}
.btn-hero-primary:hover::before { opacity: 1; }

/* Hero floating cards - light on dark overlay */
.hero-cards { position: relative; min-height: 320px; }
.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}
.float-card i { font-size: 1.5rem; color: #5eead4; }
.fc-1 { top: 0; left: 0; animation: floatCard1 5s ease-in-out infinite; }
.fc-2 { top: 50%; right: 0; transform: translateY(-50%); animation: floatCard2 5.5s ease-in-out infinite 0.5s; }
.fc-3 { bottom: 0; left: 15%; animation: floatCard3 6s ease-in-out infinite 1s; }
.float-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
@keyframes floatCard1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes floatCard2 {
    0%, 100% { transform: translateY(-50%); }
    50% { transform: translateY(calc(-50% - 12px)); }
}
@keyframes floatCard3 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.scroll-cta { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 3; }
.mouse-scroll {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    position: relative;
    animation: scrollPulse 2s ease-in-out infinite;
}
.wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheelScroll 1.5s ease-in-out infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes wheelScroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

/* ========== Stats Bar - Creative ========== */
@media (min-width: 768px) and (max-width: 991.98px) {
    .stats-bar .row { justify-content: center; }
    .stats-bar .row > .col-md-4:nth-child(n+4) { flex: 0 0 33.333333%; max-width: 33.333333%; }
}
.stats-bar {
    position: relative;
    z-index: 2;
    padding: 2.5rem 0;
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-muted) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.stats-bar .container {
    position: relative;
}
.stat-item {
    text-align: center;
    padding: 2rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}
.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-dim) 0%, var(--accent-dim) 50%, rgba(14, 160, 149, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}
.stat-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}
.stat-item:hover {
    border-color: rgba(14, 160, 149, 0.25);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px -15px rgba(14, 160, 149, 0.2);
}
.stat-item:hover::before { opacity: 1; }
.stat-item:hover::after { transform: scaleX(1); }
.stat-item > * { position: relative; z-index: 2; }
.stat-ico {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--primary-dim), var(--accent-dim));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.stat-item:hover .stat-ico {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    transform: scale(1.05);
}
.stat-num-wrap { margin-bottom: 0.25rem; }
.stat-item:hover .stat-num { color: var(--primary); }
.stat-item:hover .stat-tag { color: var(--text); }
.stat-num, .stat-suffix {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
}
.stat-tag {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* ========== Section headings ========== */
.section-head { position: relative; }
.section-label {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}
.section-title {
    font-family: var(--font-head);
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
    font-stretch: normal;
}
.section-desc {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 480px;
}

/* ========== Three Pillars - Split + vertical timeline ========== */
.pillars-vetzu {
    position: relative;
    z-index: 2;
    padding: 3rem 0;
    background: linear-gradient(180deg, var(--bg-muted) 0%, var(--bg-main) 100%);
}

.pillars-layout {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
@media (max-width: 991px) {
    .pillars-layout { grid-template-columns: 1fr; gap: 3rem; }
}

.pillars-visual {
    padding-right: 2rem;
}
@media (max-width: 991px) {
    .pillars-visual { padding-right: 0; text-align: center; }
}
.pillars-visual .section-label {
    margin-bottom: 0.5rem;
}
.pillars-main-title {
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.2;
}
.pillars-visual-desc {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}
.pillars-visual-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}
.pillars-visual-img img { width: 100%; height: auto; display: block; object-fit: cover; max-height: 280px; }
.pillars-visual-accent {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
@media (max-width: 991px) {
    .pillars-visual-accent { justify-content: center; }
}
.accent-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    flex-shrink: 0;
}
.accent-line {
    flex: 1;
    max-width: 80px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.pillars-timeline {
    position: relative;
    padding-left: 2rem;
}
@media (max-width: 991px) {
    .pillars-timeline { padding-left: 1.75rem; }
}
.pillars-timeline::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 3px;
    opacity: 0.35;
}

.pillar-step {
    position: relative;
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: center;
}
.pillar-step:last-child {
    margin-bottom: 0;
}
.pillar-step-marker {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #fff;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: var(--transition);
}
.pillar-step-marker.speed {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}
.pillar-step-marker.cost {
    background: linear-gradient(135deg, var(--accent), #8b5cf6);
}
.pillar-step-marker.compliance {
    background: linear-gradient(135deg, var(--coral), #f43f5e);
}
.pillar-step:hover .pillar-step-marker {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.pillar-step-content {
    flex: 1;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.75rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.pillar-step:hover .pillar-step-content {
    border-color: var(--primary-dim);
    box-shadow: var(--shadow-lg);
}
.pillar-step-num {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.9;
    display: block;
    margin-bottom: 0.35rem;
}
.pillar-step-content h3 {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}
.pillar-step-content p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* ========== How It Works - Creative Timeline ========== */
.how-section {
    position: relative;
    z-index: 2;
    padding: 3rem 0;
    background: linear-gradient(180deg, var(--bg-muted) 0%, var(--bg-main) 100%);
}
.timeline-vetzu {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.timeline-vetzu::before {
    content: '';
    position: absolute;
    left: 64px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 4px;
    opacity: 0.25;
}
@media (min-width: 768px) {
    .timeline-vetzu::before {
        left: 50%;
        transform: translateX(-50%);
    }
}

.timeline-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-left: 90px;
}
@media (min-width: 768px) {
    .timeline-step {
        padding-left: 0;
        gap: 2.5rem;
    }
    .timeline-step:nth-child(odd) {
        flex-direction: row;
        padding-right: calc(50% + 2.5rem);
    }
    .timeline-step:nth-child(even) {
        flex-direction: row-reverse;
        padding-left: calc(50% + 2.5rem);
    }
}
.timeline-step::before {
    content: '';
    position: absolute;
    left: 52px;
    top: 2rem;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    box-shadow: 0 0 0 6px var(--bg-main), 0 8px 24px var(--primary-dim);
    z-index: 2;
}
@media (min-width: 768px) {
    .timeline-step::before {
        left: 50%;
        margin-left: -14px;
    }
}

.step-num {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.35;
    line-height: 1;
}
@media (min-width: 768px) {
    .step-num {
        position: static;
        width: auto;
        flex: 0 0 80px;
        text-align: center;
        font-size: 2rem;
    }
    .timeline-step:nth-child(even) .step-num { order: 2; }
}

.step-content-v {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 2.25rem;
    transition: var(--transition);
    flex: 1;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
}
.step-content-v:hover {
    border-left-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.step-ico-v {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-dim), var(--accent-dim));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.25rem;
    transition: var(--transition);
}
.step-content-v:hover .step-ico-v {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    transform: scale(1.05);
}
.step-content-v h3 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}
.step-content-v p {
    color: var(--text-muted);
    font-size: 16px;
    margin: 0;
}

@media (orientation: landscape) and (max-height: 600px) {
    .how-section { padding: 1.5rem 0; }
    .timeline-vetzu { max-width: 100%; }
    .timeline-step { margin-bottom: 1.25rem; padding-left: 90px; gap: 1rem; }
    .timeline-step::before { top: 1.25rem; left: 52px; width: 22px; height: 22px; }
    .step-num { font-size: 1.75rem; width: 36px; }
    .step-content-v {
        padding: 1rem 1.25rem;
        min-height: 0;
    }
    .step-ico-v { width: 42px; height: 42px; margin-bottom: 0.5rem; font-size: 1rem; }
    .step-content-v h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
    .step-content-v p { font-size: 0.9rem; line-height: 1.4; }
}
@media (orientation: landscape) and (max-height: 600px) and (min-width: 768px) {
    .timeline-step { padding-left: 0; padding-right: 0; gap: 1.5rem; }
    .timeline-step:nth-child(odd) { padding-right: calc(50% + 1.5rem); }
    .timeline-step:nth-child(even) { padding-left: calc(50% + 1.5rem); }
    .step-content-v { padding: 1rem 1.25rem; }
}

/* ========== Industries - Creative Grid ========== */
.industries-vetzu {
    position: relative;
    z-index: 2;
    padding: 3rem 0;
    background: var(--bg-main);
    display: block !important;
    visibility: visible !important;
}
.industries-vetzu .industry-tile-img {
    min-height: 140px;
}
.industry-tile {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.industry-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
    z-index: 2;
}
.industry-tile:hover {
    border-color: var(--primary-dim);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.industry-tile:hover::before { transform: scaleX(1); }
.industry-tile-img {
    width: 100%;
    height: 140px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-muted);
    transition: transform var(--transition);
}
.industry-tile:hover .industry-tile-img {
    transform: scale(1.05);
}
.industry-tile-body {
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}
.industry-tile-body i {
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}
.industry-tile h4 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    color: var(--text);
}
.industry-tile:hover .industry-tile-body i {
    transform: scale(1.2);
    color: var(--accent);
}
.industry-tile-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}
.industry-tile-link:hover { color: inherit; }

/* ========== Testimonials - News-ticker marquee ========== */
.testimonials-vetzu {
    position: relative;
    z-index: 2;
    padding: 3rem 0;
    background: linear-gradient(180deg, var(--bg-muted) 0%, var(--bg-main) 100%);
}
.testimonials-vetzu .section-head .section-label,
.testimonials-vetzu .section-head .testimonials-section-label {
    display: block !important;
    visibility: visible !important;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 0.5rem 0;
    opacity: 1 !important;
}
.testimonials-vetzu .section-head .testimonials-section-label {
    min-height: 1.5em;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
@media (max-width: 767px) {
    .testimonials-grid { grid-template-columns: 1fr; }
}

/* News-ticker style: continuous horizontal scroll, pause on hover */
.testimonial-ticker-wrap {
    overflow: hidden;
    padding: 0.5rem 0;
    cursor: default;
}
.testimonial-ticker-track {
    display: flex;
    width: max-content;
    gap: 0;
    animation: testimonial-ticker 50s linear infinite;
}
.testimonial-ticker-wrap:hover .testimonial-ticker-track {
    animation-play-state: paused;
}
@keyframes testimonial-ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.ticker-set {
    display: flex;
    gap: 1.5rem;
    padding: 0 0.75rem;
    flex-shrink: 0;
}
.testimonial-ticker-wrap .testimonial-card-v {
    flex: 0 0 auto;
    width: 380px;
    min-width: 320px;
    max-width: 95vw;
}
@media (max-width: 767px) {
    .testimonial-ticker-wrap .testimonial-card-v {
        width: 320px;
        min-width: 280px;
    }
}
.testimonial-card-v {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2.25rem;
    height: 100%;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.testimonial-card-v::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 5rem;
    font-family: var(--font-head);
    font-weight: 800;
    color: var(--primary);
    opacity: 0.12;
    line-height: 1;
}
.testimonial-card-v:hover {
    border-color: var(--accent-dim);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.quote-v {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.25;
}
.testimonial-card-v p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 1rem;
    font-style: italic;
    position: relative;
    z-index: 2;
}
.testimonial-card-v p.testimonial-quote {
    font-weight: 700;
    font-style: normal;
    color: var(--text);
    margin-bottom: 0.5rem;
}
.testimonial-card-v p:last-of-type {
    margin-bottom: 1.5rem;
}
.test-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    position: relative;
    z-index: 2;
}
.test-author strong { color: var(--text); }
.test-author span { font-size: 0.9rem; color: var(--text-muted); }

/* ========== Platform Capabilities - List layout ========== */
.capabilities-vetzu {
    position: relative;
    z-index: 2;
    padding: 3rem 0;
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-muted) 100%);
}

.capabilities-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}
@media (max-width: 991px) {
    .capabilities-layout { grid-template-columns: 1fr; }
    .capabilities-intro { position: static; }
}

.capabilities-intro {
    position: sticky;
    top: 6rem;
}
.capabilities-intro .section-label {
    margin-bottom: 0.5rem;
}
.capabilities-title {
    font-family: var(--font-head);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1rem;
}
.capabilities-lead {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.capabilities-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.cap-item {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 1.25rem;
    align-items: start;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.cap-item:last-child {
    border-bottom: none;
}
.cap-item:hover {
    padding-left: 0.5rem;
}
.cap-num {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-muted);
    opacity: 0.7;
    min-width: 28px;
}
.cap-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-dim);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: var(--transition);
}
.cap-item:hover .cap-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    transform: scale(1.05);
}
.cap-text h4 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.35rem;
}
.cap-text p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.55;
    margin: 0;
}

/* ========== AI Section - Creative ========== */
.ai-section-v {
    position: relative;
    z-index: 2;
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-muted) 0%, var(--bg-main) 100%);
}
.ai-section-v h2 {
    font-family: var(--font-head);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--text);
}
.ai-section-v p {
    color: var(--text-muted);
}

.ai-visual-v {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto;
}
.ai-ring {
    position: absolute;
    border: 3px solid var(--border);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: aiRingPulse 3s ease-in-out infinite;
}
.ai-ring.r1 { width: 100%; height: 100%; }
.ai-ring.r2 { width: 75%; height: 75%; animation-delay: 0.3s; }
.ai-ring.r3 { width: 50%; height: 50%; animation-delay: 0.6s; }
.ai-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 20px 50px var(--primary-dim);
    animation: aiCoreGlow 2s ease-in-out infinite;
}
@keyframes aiRingPulse {
    0%, 100% { border-color: var(--border); opacity: 0.8; }
    50% { border-color: var(--primary); opacity: 1; }
}
@keyframes aiCoreGlow {
    0%, 100% { box-shadow: 0 20px 50px var(--primary-dim); }
    50% { box-shadow: 0 25px 60px var(--primary-dim), 0 0 0 20px rgba(13, 148, 136, 0.08); }
}

.ai-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ai-features-list li {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    padding: 1.25rem;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.ai-features-list li:hover {
    border-color: var(--primary-dim);
    box-shadow: var(--shadow-lg);
}
.ai-features-list li i {
    color: var(--primary);
    font-size: 1.35rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}
.ai-features-list li div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.ai-features-list li strong { color: var(--text); }
.ai-features-list li span {
    color: var(--text-muted);
    font-size: 16px;
}

/* ========== About - Split with quote ========== */
.about-vetzu {
    position: relative;
    z-index: 2;
    padding: 6rem 0;
    background: var(--bg-main);
}

.about-layout {
    display: grid;
    grid-template-columns: 0.45fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
@media (max-width: 991px) {
    .about-layout { grid-template-columns: 1fr; }
}

.about-quote-block {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    position: relative;
    box-shadow: 0 20px 50px -15px rgba(13, 148, 136, 0.4);
}
.about-quote-icon {
    font-family: var(--font-head);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1;
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
}
.about-quote-text {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    margin: 0;
    position: relative;
    z-index: 2;
}

.about-content {
    padding-left: 0.5rem;
}
@media (max-width: 991px) {
    .about-content { padding-left: 0; }
}
.about-heading {
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 2.5vw, 1.85rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.about-subhead {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
}
.about-para {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.about-para:last-child {
    margin-bottom: 0;
}

/* ========== CTA - Creative ========== */
.cta-vetzu {
    position: relative;
    z-index: 2;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-muted) 0%, var(--bg-main) 100%);
}
.cta-box-v {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 4rem 3rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}
.cta-box-v::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
}
.cta-box-v:hover {
    border-color: var(--primary-dim);
    box-shadow: var(--shadow-lg);
}
.cta-box-v:hover::before { transform: scaleX(1); }
.cta-box-v h2 {
    font-family: var(--font-head);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--text);
}
.cta-box-v p {
    color: var(--text-muted);
    font-size: 16px;
}

/* ========== Contact - Single card ========== */
.contact-vetzu {
    position: relative;
    z-index: 2;
    padding: 6rem 0;
    background: var(--bg-muted);
}

.contact-card-wrap {
    max-width: 800px;
    margin: 0 auto;
}
.contact-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}
.contact-card-header {
    padding: 2.5rem 2.5rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.contact-card-header .section-label {
    margin-bottom: 0.5rem;
}
.contact-title {
    font-family: var(--font-head);
    font-size: clamp(1.75rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.5rem;
}
.contact-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
}
.contact-card-body {
    padding: 2rem 2.5rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}
@media (max-width: 767px) {
    .contact-card-body { grid-template-columns: 1fr; }
    .contact-card-header,
    .contact-card-body { padding-left: 1.5rem; padding-right: 1.5rem; }
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--bg-muted);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}
.contact-chip:hover {
    border-color: var(--primary-dim);
    background: var(--primary-dim);
    color: var(--text);
}
.contact-chip i {
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-form-v {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 480px) {
    .form-row-2 { grid-template-columns: 1fr; }
}
.form-v {
    background: var(--bg-main) !important;
    border: 2px solid var(--border) !important;
    color: var(--text) !important;
    padding: 0.9rem 1.15rem !important;
    border-radius: var(--radius) !important;
    transition: var(--transition) !important;
}
.form-v::placeholder { color: var(--text-muted); }
.form-v:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 4px var(--primary-dim) !important;
    outline: none !important;
}
.contact-submit-btn { width: 100%; }

/* ========== Footer - Modern ========== */
.footer-vetzu {
    position: relative;
    z-index: 2;
    background: var(--bg-dark);
    color: #e2e8f0;
}
.footer-vetzu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.footer-top {
    padding: 4rem 0 3rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
@media (max-width: 991px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-pages-grid { grid-template-columns: 1fr; gap: 0; }
}

.footer-brand-block {
    max-width: 280px;
}
.footer-logo {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.75rem;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
}
.footer-logo img {
    height: 34px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.footer-logo .logo-mark { color: var(--primary-light); }
.footer-logo .logo-text { color: #fff; }
.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.footer-social {
    display: flex;
    gap: 0.75rem;
}
.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.footer-links-block h6 {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.25rem;
}
.footer-pages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2.5rem;
}
.footer-links-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links-block li { margin-bottom: 0.65rem; }
.footer-links-block a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-links-block a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.footer-copy {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.875rem;
    margin: 0;
}
.footer-tagline-bottom {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.8rem;
    margin: 0;
}

/* ========== Responsive ========== */
@media (max-width: 991px) {
    .hero-cards { min-height: 220px; margin-bottom: 2rem; }
    .fc-1, .fc-2, .fc-3 {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        bottom: auto !important;
        transform: none !important;
        margin-bottom: 1rem;
    }
    .float-card {
        width: 100%;
        max-width: 280px;
        margin: 0 auto 1rem;
    }
}
@media (max-width: 768px) {
    .section-title { font-size: 1.75rem; }
    .stat-num, .stat-suffix { font-size: 1.85rem; }
    .pillar-step-content, .testimonial-card-v {
        padding: 1.75rem 1.5rem;
    }
    .cap-item { grid-template-columns: auto 1fr; gap: 1rem; }
    .cap-num { display: none; }
    .cta-box-v { padding: 2.5rem 1.5rem; }
    .hero-vetzu { padding-top: 72px; min-height: auto; padding-bottom: 3rem; }
    .hero-vetzu .hero-title { font-size: clamp(1.5rem, 7vw, 2rem); }
    .hero-vetzu .hero-desc { font-size: 16px; margin-bottom: 1.5rem; }
    .stats-bar { padding: 1.5rem 0; }
    .stats-bar .row { display: grid; grid-template-columns: 1fr; gap: 1rem; align-items: stretch; justify-items: center; }
    .stats-bar .row > * { max-width: 360px; width: 100%; flex: none; margin: 0; padding: 0; }
    .stats-bar .row > *:last-child:nth-child(odd) .stat-item { max-width: none; }
    .stat-item { padding: 1.25rem 0.75rem; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; text-align: center; }
    .stat-item .stat-num { font-size: 1.75rem; }
    .industry-tile-img { height: 120px; }
    .industry-tile-body { padding: 1rem; }
    .industry-tile-body h4 { font-size: 1rem; }
}
@media (max-width: 575.98px) {
    .container { padding-left: 1rem; padding-right: 1rem; }
    .section-title { font-size: 1.75rem; }
    .section-head .section-label { font-size: 1rem; }
    .vetzu-nav .container { padding-left: 0.75rem; padding-right: 0.75rem; }
    .vetzu-nav .navbar-brand { font-size: 1.2rem; }
    .hero-vetzu .hero-btns { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
    .btn-hero { width: 100%; justify-content: center; }
}
