/* ==========================================================================
   ZIO TECH LIMITED — Home
   Built on the site's existing brand tokens (deep navy #132338, brand blue
   #0587ca, teal accent #4dc9a0 — see style.css / footer / legal pages)
   with an added electric-cyan accent (#06b6d4) used sparingly for the
   "high-tech" glow moments the hero and finder call for. Poppins for
   display type, Inter for body copy — same as the rest of the site.
   All class names are prefixed "zt-" so nothing collides with the legacy
   .hero / .products rules already in style.css.
   ========================================================================== */

.zt-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #0891a8;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.25);
    padding: 7px 16px;
    border-radius: 20px;
}

.zt-eyebrow::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #06b6d4;
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.18);
    animation: zt-pulse-ring 2s ease-in-out infinite;
}

@keyframes zt-pulse-ring {
    0%, 100% { box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.18); }
    50% { box-shadow: 0 0 0 8px rgba(6, 182, 212, 0.08); }
}

/* ==========================================================================
   1. HERO
   ========================================================================== */
.zt-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 8% 110px;
    background: radial-gradient(circle at 15% 20%, #f4fbfd 0%, #ffffff 55%);
}

.zt-hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.zt-hero__blob--1 {
    width: 420px;
    height: 420px;
    top: -120px;
    right: -60px;
    background: radial-gradient(circle, #06b6d4 0%, transparent 70%);
    animation: zt-float 9s ease-in-out infinite;
}

.zt-hero__blob--2 {
    width: 320px;
    height: 320px;
    bottom: -100px;
    left: 4%;
    background: radial-gradient(circle, #6366f1 0%, transparent 70%);
    animation: zt-float 11s ease-in-out infinite reverse;
}

@keyframes zt-float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-24px) translateX(14px); }
}

.zt-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 60px;
}

.zt-hero__copy h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.4rem, 4.2vw, 3.4rem);
    line-height: 1.15;
    color: #10192b;
    margin: 20px 0 20px;
}

.zt-hero__copy h1 span {
    background: linear-gradient(90deg, #132338 0%, #0891a8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.zt-hero__copy p {
    font-size: 1.12rem;
    line-height: 1.75;
    color: #545c6b;
    max-width: 560px;
    margin-bottom: 34px;
}

.zt-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 30px;
}

.zt-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    border-radius: 9px;
    font-weight: 600;
    font-size: 15.5px;
    transition: .3s;
    white-space: nowrap;
}

.zt-btn--primary {
    background: #0587ca;
    color: #fff;
    box-shadow: 0 10px 24px rgba(5, 135, 202, 0.22);
}

.zt-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(5, 135, 202, 0.3);
}

.zt-btn--secondary {
    background: #fff;
    color: #132338;
    border: 1.5px solid #dfe3ea;
}

.zt-btn--secondary:hover {
    border-color: #132338;
    transform: translateY(-3px);
}

.zt-hero__trustline {
    font-size: 13.5px;
    color: #8a92a3;
    display: flex;
    align-items: center;
    gap: 10px;
}

.zt-hero__trustline i { color: #4dc9a0; }

/* Hero visual: floating dashboard mock */
.zt-hero__visual {
    position: relative;
    height: 420px;
}

.zt-hero__ring {
    position: absolute;
    top: 8px;
    right: -10px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0%, rgba(6,182,212,0.35) 25%, transparent 50%);
    animation: zt-spin-slow 12s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes zt-spin-slow {
    to { transform: rotate(360deg); }
}

.zt-dash {
    position: absolute;
    inset: 20px 0 0 20px;
    background: linear-gradient(160deg, #132338 0%, #0c1a29 100%);
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(19, 35, 56, 0.28);
    padding: 26px;
    color: #fff;
    animation: zt-dash-float 6s ease-in-out infinite;
}

@keyframes zt-dash-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

.zt-dash__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.zt-dash__dots span {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    margin-right: 5px;
}

.zt-dash__badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    color: #4dc9a0;
    background: rgba(77, 201, 160, 0.12);
    padding: 4px 10px;
    border-radius: 20px;
}

.zt-dash__bars {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 130px;
    margin-bottom: 20px;
    padding: 0 4px;
}

.zt-dash__bars span {
    flex: 1;
    background: linear-gradient(180deg, #06b6d4 0%, #6366f1 100%);
    border-radius: 6px 6px 0 0;
    opacity: .85;
}

.zt-dash__line {
    height: 1px;
    background: rgba(255,255,255,0.12);
    margin-bottom: 18px;
}

.zt-dash__stat-row {
    display: flex;
    justify-content: space-between;
}

.zt-dash__stat-row div p:first-child {
    font-size: 20px;
    font-weight: 700;
}

.zt-dash__stat-row div p:last-child {
    font-size: 11.5px;
    color: rgba(255,255,255,0.55);
}

.zt-chip {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.14);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #132338;
}

.zt-chip i { color: #06b6d4; font-size: 16px; }

.zt-chip--1 {
    top: 0;
    right: 0;
    animation: zt-float 7s ease-in-out infinite;
}

.zt-chip--2 {
    bottom: 26px;
    left: -18px;
    animation: zt-float 8.5s ease-in-out infinite reverse;
}

/* ==========================================================================
   2. METRICS / TECH-STACK TICKER
   ========================================================================== */
.zt-ticker {
    background: #132338;
    padding: 26px 0;
    overflow: hidden;
}

.zt-ticker__track {
    display: flex;
    width: max-content;
    gap: 64px;
    animation: zt-scroll 26s linear infinite;
}

.zt-ticker:hover .zt-ticker__track { animation-play-state: paused; }

@keyframes zt-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.zt-ticker__item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.75);
    font-size: 14.5px;
    font-weight: 600;
    white-space: nowrap;
}

.zt-ticker__item i { color: #06b6d4; font-size: 17px; transition: transform .25s; }
.zt-ticker__item strong { color: #fff; }
.zt-ticker__item:hover i { transform: scale(1.25) rotate(-8deg); }

.zt-ticker__dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
}

/* ==========================================================================
   3. SERVICES
   ========================================================================== */
.zt-services {
    padding: 110px 8% 100px;
    max-width: 1240px;
    margin: 0 auto;
}

.zt-section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.zt-section-head h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.9rem, 3.4vw, 2.5rem);
    color: #10192b;
    margin: 16px 0 14px;
}

.zt-section-head p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
}

.zt-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}

.zt-service-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 34px 28px;
    transition: .35s;
    position: relative;
    overflow: hidden;
}

.zt-service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(6,182,212,0.06), rgba(99,102,241,0.06));
    opacity: 0;
    transition: .35s;
}

.zt-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.1);
    border-color: transparent;
}

.zt-service-card:hover::before { opacity: 1; }

.zt-service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #132338;
    color: #06b6d4;
    font-size: 22px;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
    transition: transform .35s cubic-bezier(0.34, 1.56, 0.64, 1), background .35s;
}

.zt-service-card:hover .zt-service-card__icon {
    transform: scale(1.08) rotate(-6deg);
    background: #0587ca;
    color: #fff;
}

.zt-service-card h3 {
    font-size: 19px;
    color: #10192b;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.zt-service-card p {
    color: #666;
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.zt-service-card a {
    font-size: 14px;
    font-weight: 700;
    color: #0587ca;
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s;
}

.zt-service-card a:hover { gap: 10px; }

.zt-service-card a i { transition: transform .25s; }
.zt-service-card a:hover i { transform: translateX(3px); }

/* ==========================================================================
   4. WHY ZIO TECH
   ========================================================================== */
.zt-why {
    background: #fafbfc;
    padding: 100px 8%;
}

.zt-why__inner {
    max-width: 1240px;
    margin: 0 auto;
}

.zt-why__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.zt-why-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #ececec;
    transition: transform .3s, box-shadow .3s;
}

.zt-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.zt-why-card .zt-why-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(77, 201, 160, 0.12);
    color: #2f9a76;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 18px;
    transition: transform .35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.zt-why-card:hover .zt-why-card__icon {
    transform: scale(1.12) rotate(6deg);
}

.zt-why-card h3 {
    font-size: 18px;
    color: #10192b;
    margin-bottom: 10px;
}

.zt-why-card p {
    color: #666;
    font-size: 14.5px;
    line-height: 1.7;
}

/* ==========================================================================
   5. CASE STUDIES
   ========================================================================== */
.zt-cases {
    padding: 100px 8%;
    max-width: 1240px;
    margin: 0 auto;
}

.zt-cases__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 26px;
}

.zt-case-card {
    border-radius: 18px;
    padding: 34px;
    background: linear-gradient(160deg, #132338 0%, #0c1a29 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.zt-case-card__tag {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: #06b6d4;
    background: rgba(6, 182, 212, 0.12);
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 22px;
}

.zt-case-card__metric {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #4dc9a0, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.zt-case-card p {
    color: rgba(255,255,255,0.75);
    font-size: 14.5px;
    line-height: 1.7;
}

.zt-cases__note {
    margin-top: 22px;
    font-size: 12.5px;
    color: #9aa2b1;
    text-align: center;
}

/* ==========================================================================
   6. SOLUTION FINDER
   ========================================================================== */
.zt-finder {
    padding: 100px 8%;
    background: #fafbfc;
}

.zt-finder__inner {
    max-width: 880px;
    margin: 0 auto;
    background: #fff;
    border-radius: 22px;
    border: 1px solid #ececec;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.06);
    padding: 46px;
}

.zt-finder__steps {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 34px;
}

.zt-finder__step-dot {
    width: 34px;
    height: 6px;
    border-radius: 4px;
    background: #e7eaef;
    transition: .3s;
}

.zt-finder__step-dot.active { background: #0587ca; }
.zt-finder__step-dot.done { background: #4dc9a0; }

.zt-finder__panel { display: none; }
.zt-finder__panel.active { display: block; animation: zt-fade-in .35s ease; }

@keyframes zt-fade-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.zt-finder__panel h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: #10192b;
    text-align: center;
    margin-bottom: 8px;
}

.zt-finder__panel > p.zt-finder__hint {
    text-align: center;
    color: #777;
    font-size: 14px;
    margin-bottom: 28px;
}

.zt-finder__options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}

.zt-finder__option {
    background: #f8f9fb;
    border: 1.5px solid #e7eaef;
    border-radius: 12px;
    padding: 20px 18px;
    text-align: left;
    cursor: pointer;
    transition: .2s;
    font-family: inherit;
}

.zt-finder__option:hover {
    border-color: #06b6d4;
    background: #f2fcfd;
    transform: translateY(-3px);
}

.zt-finder__option.selected {
    border-color: #0587ca;
    background: #fff5f5;
    box-shadow: 0 8px 20px rgba(5, 135, 202, 0.12);
}

.zt-finder__option.selected i {
    animation: zt-icon-pop .35s ease;
}

@keyframes zt-icon-pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.zt-finder__option i {
    color: #0587ca;
    font-size: 18px;
    margin-bottom: 10px;
    display: block;
    transition: transform .2s;
}

.zt-finder__nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 26px;
}

.zt-finder__nav-row--single {
    justify-content: flex-end;
}

.zt-finder__next:disabled {
    opacity: .4;
    cursor: not-allowed;
    box-shadow: none;
    transform: none !important;
}

.zt-finder__next:not(:disabled):hover {
    transform: translateY(-3px);
}

.zt-finder__option strong {
    display: block;
    font-size: 15px;
    color: #10192b;
    margin-bottom: 4px;
}

.zt-finder__option span {
    font-size: 12.5px;
    color: #777;
}

.zt-finder__back {
    display: inline-block;
    font-size: 13.5px;
    color: #888;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
}

.zt-finder__result-actions .zt-finder__back {
    margin-top: 0;
}

.zt-finder__back:hover { color: #0587ca; }

.zt-finder__result {
    text-align: center;
}

.zt-finder__result-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(77, 201, 160, 0.12);
    color: #2f9a76;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 20px;
}

.zt-finder__result h4 {
    font-size: 20px;
    color: #10192b;
    margin-bottom: 10px;
}

.zt-finder__result p {
    color: #666;
    font-size: 14.5px;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 26px;
}

.zt-finder__result-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ==========================================================================
   7. TESTIMONIALS
   ========================================================================== */
.zt-testimonials {
    padding: 110px 8%;
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.zt-testi__card {
    position: relative;
    background: #fff;
    border-radius: 28px;
    padding: 20px;
    box-shadow: 0 26px 60px rgba(19, 35, 56, .12);
    border: 1px solid #eef0f4;
    overflow: hidden;
}

.zt-testi__track {
    position: relative;
    min-height: 320px;
}

.zt-testi__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .4s ease, transform .4s ease;
    pointer-events: none;
    display: flex;
    align-items: stretch;
    gap: 0;
}

.zt-testi__slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.zt-testi__photo {
    position: relative;
    width: 300px;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(160deg, #132338 0%, #0891a8 100%);
}

.zt-testi__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.zt-testi__initials {
    width: 100%;
    height: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: 700;
}

.zt-testi__quotemark {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    color: #0891a8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    box-shadow: 0 6px 16px rgba(0,0,0,.2);
}

.zt-testi__body {
    flex: 1;
    min-width: 0;
    padding: 48px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.zt-testi__stars { color: #f5a623; font-size: 14px; letter-spacing: 3px; margin-bottom: 16px; }

.zt-testi__quote {
    font-size: 1.35rem;
    line-height: 1.65;
    color: #1a2436;
    font-weight: 500;
    margin: 0 0 26px;
}

.zt-testi__person strong { display: block; font-size: 16px; color: #10192b; }
.zt-testi__person span { font-size: 13.5px; color: #888; }

.zt-testi__controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 34px;
}

.zt-testi__arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid #e7eaef;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #132338;
    transition: .2s;
}

.zt-testi__arrow:hover { border-color: #0587ca; color: #0587ca; }

.zt-testi__dots { display: flex; gap: 8px; }

.zt-testi__dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e0e3e9;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: .2s;
}

.zt-testi__dots button.active { background: #0587ca; width: 22px; border-radius: 4px; }

.zt-testi__note {
    margin-top: 26px;
    font-size: 12.5px;
    color: #aaa;
}

/* ==========================================================================
   8. FINAL CTA
   ========================================================================== */
.zt-final-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(115deg, #1e1b4b 0%, #4338ca 45%, #0891a8 100%);
    background-size: 250% 250%;
    animation: zt-gradient-shift 10s ease infinite;
    padding: 90px 8%;
    text-align: center;
}

@keyframes zt-gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.zt-final-cta__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.zt-final-cta__glow--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6,182,212,0.28) 0%, transparent 70%);
    top: -180px;
    left: -80px;
    animation: zt-float 10s ease-in-out infinite;
}

.zt-final-cta__glow--2 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(5, 135, 202,0.22) 0%, transparent 70%);
    bottom: -160px;
    right: -60px;
    animation: zt-float 8s ease-in-out infinite reverse;
}

.zt-final-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.zt-final-cta h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.9rem, 3.6vw, 2.6rem);
    color: #fff;
    margin-bottom: 16px;
}

.zt-final-cta p {
    color: rgba(255,255,255,0.72);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 34px;
}

.zt-final-cta__ctas {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.zt-btn--ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.3);
}

.zt-btn--ghost:hover {
    border-color: #fff;
    transform: translateY(-3px);
}

/* ==========================================================================
   SCROLL REVEAL (works with the site's existing reveal.js / [data-reveal])
   ========================================================================== */
[data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s cubic-bezier(0.215, 0.610, 0.355, 1), transform .7s cubic-bezier(0.215, 0.610, 0.355, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1200px) {
    .zt-hero { padding: 70px 24px 80px; }

    .zt-hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .zt-hero__copy p { margin-left: auto; margin-right: auto; }
    .zt-hero__ctas, .zt-hero__trustline { justify-content: center; }
    .zt-hero__visual { height: 320px; margin-top: 30px; }
    .zt-dash { inset: 0; }

    .zt-services, .zt-cases { padding: 80px 24px; }
    .zt-why, .zt-finder, .zt-testimonials, .zt-final-cta { padding: 80px 24px; }
    .zt-finder__inner { padding: 30px 22px; }
}

@media (max-width: 780px) {
    .zt-testi__slide { flex-direction: column; }
    .zt-testi__photo { width: 100%; height: 220px; }
    .zt-testi__initials { min-height: 220px; font-size: 52px; }
    .zt-testi__body { padding: 32px 28px; }
    .zt-testi__track { min-height: 420px; }
}

@media (max-width: 560px) {
    .zt-testi__quote { font-size: 1.1rem; }
    .zt-testi__photo { height: 180px; }
    .zt-testi__body { padding: 26px 22px; }
    .zt-hero__copy h1 { font-size: 2.1rem; }
    .zt-btn { width: 100%; justify-content: center; }
    .zt-hero__ctas { flex-direction: column; }
    .zt-case-card__metric { font-size: 2rem; }
    .zt-finder__result-actions .zt-btn { width: auto; }
}
