/* ============ ITSite Sections ============ */
.its-sec {
    --p: #2563eb;
    --p2: #7c3aed;
    --dark: #0b1120;
    --ink: #0f172a;
    --body: #475569;
    --mute: #94a3b8;
    --line: #e2e8f0;
    --bg: #f8fafc;
    position: relative;
    padding: 92px 0;
}
.its-wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.its-hl {
    background: linear-gradient(100deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Section headers */
.its-shead { max-width: 680px; margin: 0 auto 54px; }
.its-shead-center { text-align: center; }
.its-shead-left { margin: 0 0 32px; max-width: 100%; text-align: left; }

.its-eyebrow {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--p);
    margin-bottom: 14px;
    padding: 5px 13px;
    border-radius: 30px;
    background: rgba(37,99,235,.08);
}
.its-stitle {
    font-size: clamp(28px, 4vw, 43px);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -.03em;
    color: var(--ink);
    margin: 0 0 16px;
}
.its-sdesc { font-size: 16.5px; line-height: 1.75; color: var(--body); margin: 0; }
.its-empty { text-align: center; color: var(--mute); padding: 40px 0; }

/* Buttons */
.its-b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all .25s;
}
.its-b svg { transition: transform .25s; }
.its-b:hover svg { transform: translateX(4px); }
.its-b-primary {
    background: linear-gradient(100deg, var(--p), var(--p2));
    color: #fff !important;
    box-shadow: 0 8px 24px rgba(37,99,235,.28);
}
.its-b-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(37,99,235,.4); }
.its-b-ghost { background: #fff; color: var(--ink) !important; border: 1px solid var(--line); }
.its-b-ghost:hover { border-color: var(--p); color: var(--p) !important; }
.its-b-outline { background: transparent; color: var(--ink) !important; border: 1.5px solid var(--line); }
.its-b-outline:hover { border-color: var(--p); color: var(--p) !important; background: rgba(37,99,235,.04); }
.its-b-white { background: #fff; color: var(--ink) !important; box-shadow: 0 10px 30px rgba(0,0,0,.2); }
.its-b-white:hover { transform: translateY(-2px); }
.its-b-full { width: 100%; }
.its-sec-btn { text-align: center; margin-top: 48px; }

/* Grids */
.its-grid { display: grid; gap: 24px; }
.its-cols-2 { grid-template-columns: repeat(2, 1fr); }
.its-cols-3 { grid-template-columns: repeat(3, 1fr); }
.its-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Dot */
.its-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34,197,94,.2);
    animation: itsPulse 2s infinite;
}
@keyframes itsPulse {
    0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,.2); }
    50%     { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* ---------- HERO ---------- */
.its-hero {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    padding: 0;
    overflow: hidden;
    width: 100%;
}
.its-hero-glow {
    position: absolute;
    top: -260px; right: -180px;
    width: 720px; height: 720px;
    background: radial-gradient(circle, rgba(37,99,235,.14) 0%, rgba(124,58,237,.07) 45%, transparent 70%);
    pointer-events: none;
}
.its-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.its-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 7px 16px 7px 12px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--body);
    box-shadow: 0 2px 10px rgba(15,23,42,.05);
    margin-bottom: 22px;
}
.its-hero-title {
    font-size: clamp(34px, 5.2vw, 58px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.035em;
    color: var(--ink);
    margin: 0 0 20px;
}
.its-hero-desc {
    font-size: 17.5px;
    line-height: 1.7;
    color: var(--body);
    max-width: 540px;
    margin: 0 0 32px;
}
.its-hero-btns { display: flex; gap: 13px; flex-wrap: wrap; margin-bottom: 44px; }
.its-hero-stats { display: flex; gap: 40px; padding-top: 28px; border-top: 1px solid var(--line); }
.its-hs strong { display: block; font-size: 27px; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.its-hs span { font-size: 13.5px; color: var(--mute); }

/* Hero mockup */
.its-hero-img { width: 100%; height: auto; border-radius: 16px; box-shadow: 0 30px 70px rgba(15,23,42,.16); }
.its-mock {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 30px 70px rgba(15,23,42,.13);
    overflow: hidden;
    transform: perspective(1400px) rotateY(-6deg) rotateX(2deg);
    animation: itsFloat 6s ease-in-out infinite;
}
@keyframes itsFloat {
    0%,100% { transform: perspective(1400px) rotateY(-6deg) rotateX(2deg) translateY(0); }
    50%     { transform: perspective(1400px) rotateY(-6deg) rotateX(2deg) translateY(-13px); }
}
.its-mock-bar { display: flex; gap: 6px; padding: 13px 16px; background: #f1f5f9; border-bottom: 1px solid var(--line); }
.its-mock-bar span { width: 10px; height: 10px; border-radius: 50%; background: #cbd5e1; }
.its-mock-bar span:first-child { background: #ef4444; }
.its-mock-bar span:nth-child(2) { background: #f59e0b; }
.its-mock-bar span:nth-child(3) { background: #22c55e; }
.its-mock-body { padding: 24px; }
.its-mock-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.its-mock-chip { font-size: 13px; font-weight: 600; color: var(--body); }
.its-mock-val { font-size: 26px; font-weight: 800; color: #16a34a; letter-spacing: -.02em; }
.its-mock-chart { display: flex; align-items: flex-end; gap: 8px; height: 118px; margin-bottom: 22px; }
.its-mock-chart span {
    flex: 1;
    background: linear-gradient(180deg, var(--p), var(--p2));
    border-radius: 5px 5px 2px 2px;
    opacity: .85;
    transform-origin: bottom;
    animation: itsBar .9s cubic-bezier(.2,.8,.2,1) backwards;
}
.its-mock-chart span:nth-child(1){animation-delay:.05s}
.its-mock-chart span:nth-child(2){animation-delay:.1s}
.its-mock-chart span:nth-child(3){animation-delay:.15s}
.its-mock-chart span:nth-child(4){animation-delay:.2s}
.its-mock-chart span:nth-child(5){animation-delay:.25s}
.its-mock-chart span:nth-child(6){animation-delay:.3s}
.its-mock-chart span:nth-child(7){animation-delay:.35s}
.its-mock-chart span:nth-child(8){animation-delay:.4s}
.its-mock-chart span:nth-child(9){animation-delay:.45s}
@keyframes itsBar { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.its-mock-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; padding-top: 20px; border-top: 1px solid var(--line); }
.its-mock-kpis small { display: block; font-size: 11px; color: var(--mute); margin-bottom: 3px; }
.its-mock-kpis b { font-size: 16px; color: var(--ink); }

/* ---------- TRUST ---------- */
.its-trust { padding: 44px 0; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.its-trust-label { text-align: center; font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--mute); margin: 0 0 26px; }
.its-trust-row { display: flex; align-items: center; justify-content: center; gap: 52px; flex-wrap: wrap; }
.its-trust-row img { max-height: 30px; width: auto; filter: grayscale(1); opacity: .5; transition: all .3s; }
.its-trust-row img:hover { filter: none; opacity: 1; }

/* ---------- SERVICES ---------- */
.its-services { background: var(--bg); }
.its-card {
    display: block;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 30px 26px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all .3s cubic-bezier(.2,.8,.2,1);
}
.its-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--p), var(--p2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s;
}
.its-card:hover { transform: translateY(-6px); border-color: transparent; box-shadow: 0 20px 44px rgba(15,23,42,.1); }
.its-card:hover::before { transform: scaleX(1); }
.its-scard.is-feat { border-color: rgba(37,99,235,.3); background: linear-gradient(180deg, rgba(37,99,235,.03), #fff); }

.its-sicon {
    width: 52px; height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: linear-gradient(135deg, rgba(37,99,235,.1), rgba(124,58,237,.1));
    color: var(--p);
    margin-bottom: 20px;
    font-size: 24px;
    transition: all .3s;
}
.its-sicon svg { width: 25px; height: 25px; }
.its-card:hover .its-sicon { background: linear-gradient(135deg, var(--p), var(--p2)); color: #fff; transform: rotate(-6deg) scale(1.05); }

.its-scard h3 { font-size: 19px; font-weight: 700; color: var(--ink); margin: 0 0 9px; letter-spacing: -.015em; }
.its-scard p { font-size: 14.5px; line-height: 1.7; color: var(--body); margin: 0 0 16px; }

.its-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.its-tags span {
    font-size: 11.5px;
    font-weight: 500;
    color: var(--body);
    background: var(--bg);
    border: 1px solid var(--line);
    padding: 4px 10px;
    border-radius: 20px;
}
.its-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--p);
    transition: gap .25s;
}
.its-card:hover .its-arrow { gap: 11px; }

/* ---------- ABOUT ---------- */
.its-about { background: #fff; }
.its-about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 62px; align-items: center; }
.its-about-vis { position: relative; }
.its-about-vis img { width: 100%; height: auto; border-radius: 18px; box-shadow: 0 24px 56px rgba(15,23,42,.14); }
.its-about-ph {
    aspect-ratio: 4/3.4;
    background: linear-gradient(135deg, #eef2ff, #f5f3ff);
    border: 1px solid var(--line);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c7d2fe;
}
.its-about-ph svg { width: 74px; height: 74px; }
.its-about-badge {
    position: absolute;
    right: -18px; bottom: -18px;
    background: linear-gradient(135deg, var(--p), var(--p2));
    color: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 16px 40px rgba(37,99,235,.35);
}
.its-about-badge strong { font-size: 34px; font-weight: 800; letter-spacing: -.03em; }
.its-about-badge span { font-size: 12.5px; line-height: 1.3; opacity: .9; }

.its-checks { list-style: none; margin: 0 0 32px; padding: 0; }
.its-checks li { display: flex; gap: 14px; margin-bottom: 20px; }
.its-check {
    flex-shrink: 0;
    width: 24px; height: 24px;
    border-radius: 7px;
    background: linear-gradient(135deg, var(--p), var(--p2));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.its-check svg { width: 13px; height: 13px; }
.its-checks strong { display: block; font-size: 15.5px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.its-checks span { font-size: 14.5px; line-height: 1.65; color: var(--body); }

/* ---------- STATS ---------- */
.its-stats {
    background: var(--dark);
    padding: 66px 0;
    overflow: hidden;
}
.its-stats::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 50%, rgba(37,99,235,.18), transparent 42%),
        radial-gradient(circle at 85% 50%, rgba(124,58,237,.14), transparent 42%);
}
.its-stats-grid { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.its-stat { text-align: center; padding: 8px 16px; position: relative; }
.its-stat + .its-stat::before {
    content: "";
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 1px; height: 52px;
    background: rgba(255,255,255,.1);
}
.its-stat-n { font-size: clamp(34px, 4vw, 48px); font-weight: 800; letter-spacing: -.04em; line-height: 1; margin-bottom: 9px; }
.its-stat-n .its-count { background: linear-gradient(100deg, #60a5fa, #a78bfa); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.its-stat-n em { font-style: normal; background: linear-gradient(100deg, #60a5fa, #a78bfa); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.its-stat p { font-size: 14px; color: #94a3b8; margin: 0; }

/* ---------- PROCESS ---------- */
.its-process { background: #fff; }
.its-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 26px; position: relative; }
.its-steps::before {
    content: "";
    position: absolute;
    top: 26px; left: 12%; right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--line) 0%, var(--p) 50%, var(--line) 100%);
    opacity: .45;
}
.its-step { position: relative; text-align: center; }
.its-step-n {
    width: 54px; height: 54px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--line);
    color: var(--mute);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -.02em;
    position: relative;
    z-index: 2;
    transition: all .3s;
}
.its-step:hover .its-step-n {
    background: linear-gradient(135deg, var(--p), var(--p2));
    border-color: transparent;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 10px 26px rgba(37,99,235,.32);
}
.its-step h3 { font-size: 17.5px; font-weight: 700; color: var(--ink); margin: 0 0 9px; letter-spacing: -.015em; }
.its-step p { font-size: 14.5px; line-height: 1.7; color: var(--body); margin: 0; }

/* ---------- PORTFOLIO ---------- */
.its-work { background: var(--bg); }
.its-filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 9px; margin-bottom: 40px; }
.its-filter {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 9px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--body);
    cursor: pointer;
    transition: all .25s;
}
.its-filter:hover { border-color: var(--p); color: var(--p); }
.its-filter.is-active { background: linear-gradient(100deg, var(--p), var(--p2)); border-color: transparent; color: #fff; }

.its-wcard {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    transition: all .3s cubic-bezier(.2,.8,.2,1);
}
.its-wcard.is-hidden { display: none; }
.its-wcard:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(15,23,42,.12); border-color: transparent; }
.its-wthumb { display: block; position: relative; aspect-ratio: 16/10.5; overflow: hidden; background: #eef2ff; }
.its-wthumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.8,.2,1); }
.its-wcard:hover .its-wthumb img { transform: scale(1.07); }
.its-wph { display: flex; align-items: center; justify-content: center; height: 100%; font-size: 19px; font-weight: 700; color: #a5b4fc; }
.its-wover {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37,99,235,.86), rgba(124,58,237,.86));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
}
.its-wcard:hover .its-wover { opacity: 1; }
.its-wbody { padding: 22px; }
.its-wclient { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--p); }
.its-wbody h3 { font-size: 18px; font-weight: 700; color: var(--ink); margin: 7px 0 8px; letter-spacing: -.015em; }
.its-wres { font-size: 14px; color: #16a34a; font-weight: 600; margin: 0 0 14px; }

/* ---------- TECH ---------- */
.its-tech { background: #fff; overflow: hidden; }
.its-marquee { position: relative; margin-top: 6px; }
.its-marquee::before, .its-marquee::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.its-marquee::before { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.its-marquee::after  { right: 0; background: linear-gradient(270deg, #fff, transparent); }
.its-marquee-track { display: flex; gap: 14px; width: max-content; animation: itsMarq 38s linear infinite; }
.its-marquee:hover .its-marquee-track { animation-play-state: paused; }
@keyframes itsMarq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.its-tchip {
    flex-shrink: 0;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 15px 24px;
    text-align: center;
    transition: all .25s;
}
.its-tchip:hover { border-color: var(--p); background: #fff; transform: translateY(-3px); box-shadow: 0 10px 24px rgba(15,23,42,.08); }
.its-tchip strong { display: block; font-size: 15px; font-weight: 700; color: var(--ink); }
.its-tchip small { font-size: 11.5px; color: var(--mute); }

/* ---------- PRICING ---------- */
.its-pricing { background: var(--bg); }
.its-plans { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: start; }
.its-plan {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 34px 28px;
    position: relative;
    transition: all .3s;
}
.its-plan:hover { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(15,23,42,.1); }
.its-plan.is-pop {
    border: 2px solid transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(140deg, var(--p), var(--p2)) border-box;
    box-shadow: 0 22px 52px rgba(37,99,235,.16);
    transform: scale(1.03);
}
.its-plan.is-pop:hover { transform: scale(1.03) translateY(-4px); }
.its-plan-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(100deg, var(--p), var(--p2));
    color: #fff;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(37,99,235,.32);
}
.its-plan h3 { font-size: 19px; font-weight: 700; color: var(--ink); margin: 0 0 6px; }
.its-plan-tag { font-size: 14px; color: var(--body); margin: 0 0 22px; min-height: 40px; }
.its-plan-price { display: flex; align-items: baseline; gap: 3px; padding-bottom: 24px; margin-bottom: 24px; border-bottom: 1px solid var(--line); }
.its-cur { font-size: 20px; font-weight: 600; color: var(--body); }
.its-plan-price strong { font-size: 40px; font-weight: 800; color: var(--ink); letter-spacing: -.04em; line-height: 1; }
.its-plan-price em { font-style: normal; font-size: 14px; color: var(--mute); margin-left: 3px; }
.its-plan-feat { list-style: none; margin: 0 0 28px; padding: 0; }
.its-plan-feat li { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 13px; font-size: 14.5px; line-height: 1.6; color: var(--body); }
.its-plan-feat svg { flex-shrink: 0; width: 15px; height: 15px; margin-top: 4px; color: #16a34a; }
.its-plan-feat li.is-off { color: var(--mute); }
.its-plan-feat li.is-off svg { color: #cbd5e1; }

/* ---------- TESTIMONIALS ---------- */
.its-testi { background: #fff; }
.its-tgrid { columns: 3; column-gap: 24px; }
.its-tcard {
    break-inside: avoid;
    margin: 0 0 24px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px 26px;
    position: relative;
    transition: all .3s cubic-bezier(.2,.8,.2,1);
}
.its-tcard:hover { background: #fff; transform: translateY(-5px); box-shadow: 0 20px 44px rgba(15,23,42,.1); border-color: transparent; }
.its-quote { position: absolute; top: 22px; right: 24px; width: 34px; height: 34px; color: var(--p); opacity: .1; }
.its-stars { display: flex; gap: 3px; margin-bottom: 15px; }
.its-stars svg { width: 15px; height: 15px; color: #e2e8f0; }
.its-stars svg.on { color: #f59e0b; }
.its-tcard blockquote { margin: 0 0 18px; padding: 0; border: 0; }
.its-tcard blockquote p { font-size: 15px; line-height: 1.75; color: var(--body); margin: 0 0 10px; }
.its-tcard blockquote p:last-child { margin: 0; }
.its-tresult {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(22,163,74,.09);
    color: #15803d;
    font-size: 12.5px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.its-tauthor { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.its-tavatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.its-tinit {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--p), var(--p2));
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}
.its-tauthor strong { display: block; font-size: 14.5px; font-weight: 700; color: var(--ink); }
.its-tauthor span { font-size: 13px; color: var(--mute); }

/* ---------- FAQ ---------- */
.its-faq { background: var(--bg); }
.its-faq-wrap { max-width: 860px; }
.its-acc { display: grid; gap: 12px; }
.its-acc-2 { grid-template-columns: repeat(2,1fr); align-items: start; }
.its-acc-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 13px;
    overflow: hidden;
    transition: all .3s;
}
.its-acc-item.is-open { border-color: rgba(37,99,235,.35); box-shadow: 0 10px 30px rgba(37,99,235,.08); }
.its-acc-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: none;
    border: 0;
    padding: 20px 22px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    transition: color .22s;
    font-family: inherit;
}
.its-acc-q:hover { color: var(--p); }
.its-acc-item.is-open .its-acc-q { color: var(--p); }
.its-acc-ico {
    flex-shrink: 0;
    position: relative;
    width: 22px; height: 22px;
    border-radius: 6px;
    background: rgba(37,99,235,.08);
    transition: all .3s;
}
.its-acc-ico::before, .its-acc-ico::after {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    background: var(--p);
    border-radius: 2px;
    transform: translate(-50%,-50%);
    transition: all .3s;
}
.its-acc-ico::before { width: 10px; height: 2px; }
.its-acc-ico::after  { width: 2px; height: 10px; }
.its-acc-item.is-open .its-acc-ico { background: var(--p); }
.its-acc-item.is-open .its-acc-ico::before { background: #fff; }
.its-acc-item.is-open .its-acc-ico::after { transform: translate(-50%,-50%) rotate(90deg); background: #fff; opacity: 0; }
.its-acc-a { max-height: 0; overflow: hidden; transition: max-height .35s cubic-bezier(.4,0,.2,1); }
.its-acc-item.is-open .its-acc-a { max-height: 600px; }
.its-acc-inner { padding: 0 22px 22px; }
.its-acc-inner p { font-size: 15px; line-height: 1.75; color: var(--body); margin: 0 0 10px; }
.its-acc-inner p:last-child { margin: 0; }
.its-faq-cta { text-align: center; margin-top: 42px; }
.its-faq-cta p { font-size: 15px; color: var(--body); margin: 0 0 14px; }

/* ---------- CTA ---------- */
.its-ctaband { background: #fff; padding: 0 0 92px; }
.its-ctabox {
    background: linear-gradient(120deg, #2563eb 0%, #4f46e5 50%, #7c3aed 100%);
    border-radius: 24px;
    padding: 68px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.its-ctabox::before {
    content: "";
    position: absolute;
    top: -50%; left: -10%;
    width: 60%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,.11), transparent 60%);
}
.its-ctabox > * { position: relative; z-index: 2; }
.its-ctabox h2 {
    font-size: clamp(26px, 3.6vw, 40px);
    font-weight: 800;
    letter-spacing: -.03em;
    color: #fff;
    margin: 0 0 14px;
    line-height: 1.2;
}
.its-ctabox .its-hl { background: linear-gradient(100deg, #fde68a, #fca5a5); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.its-ctabox p { font-size: 16.5px; color: rgba(255,255,255,.85); max-width: 520px; margin: 0 auto 30px; line-height: 1.7; }
.its-ctanote {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 13.5px;
    color: rgba(255,255,255,.8);
}

/* ---------- Reveal on scroll ---------- */
.its-reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.its-reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .its-sec { padding: 72px 0; }
    .its-hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .its-hero-vis { max-width: 560px; }
    .its-cols-3, .its-cols-4 { grid-template-columns: repeat(2,1fr); }
    .its-about-grid { grid-template-columns: 1fr; gap: 44px; }
    .its-steps { grid-template-columns: repeat(2,1fr); gap: 36px 24px; }
    .its-steps::before { display: none; }
    .its-plans { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .its-plan.is-pop { transform: none; }
    .its-plan.is-pop:hover { transform: translateY(-4px); }
    .its-tgrid { columns: 2; }
    .its-acc-2 { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
    .its-sec { padding: 58px 0; }
    .its-hero { padding: 62px 0 58px; }
    .its-hero-btns .its-b { flex: 1; min-width: 150px; }
    .its-hero-stats { gap: 26px; }
    .its-hs strong { font-size: 22px; }
    .its-shead { margin-bottom: 38px; }
    .its-cols-2, .its-cols-3, .its-cols-4 { grid-template-columns: 1fr; }
    .its-stats-grid { grid-template-columns: repeat(2,1fr); gap: 34px 12px; }
    .its-stat + .its-stat::before { display: none; }
    .its-steps { grid-template-columns: 1fr; gap: 30px; }
    .its-about-badge { right: 12px; bottom: -14px; padding: 15px 18px; }
    .its-about-badge strong { font-size: 27px; }
    .its-tgrid { columns: 1; }
    .its-ctabox { padding: 48px 24px; border-radius: 18px; }
    .its-ctaband { padding-bottom: 58px; }
    .its-mock { transform: none; animation: none; }
    .its-marquee::before, .its-marquee::after { width: 50px; }
}