:root {
    --navy: #0a1628;
    --blue: #1a56db;
    --blue2: #2563eb;
    --blue3: #3b82f6;
    --blue-light: #dbeafe;
    --blue-pale: #eff6ff;
    --sky: #e0eeff;
    --white: #ffffff;
    --off: #f8faff;
    --text: #0a1628;
    --muted: #5a6e8c;
    --line: #e2eaf5;
    --green: #10b981;
    --amber: #f59e0b;
    --red: #ef4444;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

/* ─── ANIMATIONS ─────────────────────────────── */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes floatY {
    0%,
    100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-10px)
    }
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: .5;
        transform: scale(.8)
    }
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }
    to {
        transform: translateX(-50%)
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px)
    }
    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(16px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes shimmer {
    0% {
        background-position: -400px 0
    }
    100% {
        background-position: 400px 0
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.tc-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: inherit;
    font-weight: 600;
    font-size: .88rem;
    border-radius: 10px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all .22s;
    border: none;
}

.tc-btn-ghost {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--line);
}

.tc-btn-ghost:hover {
    border-color: var(--blue2);
    color: var(--blue2);
    background: var(--blue-pale);
}

.tc-btn-primary {
    background: var(--blue2);
    color: white;
    box-shadow: 0 4px 16px rgba(37, 99, 235, .3);
}

.tc-btn-primary:hover {
    background: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, .38);
    color: #fff !important
}

.tc-btn-lg {
    font-size: 1rem;
    padding: 15px 30px;
    border-radius: 12px;
}

.tc-btn-xl {
    font-size: 1.05rem;
    padding: 17px 36px;
    border-radius: 13px;
}

/* ─── HERO ────────────────────────────────────── */

/* ─── HERO ────────────────────────────────────── */

.tc-hero {
    padding: 90px 6% 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    overflow: hidden;
    background: var(--white);
}

/* Blueprint grid background */

.tc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(37, 99, 235, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(37, 99, 235, .04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.tc-hero::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -150px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, .08) 0%, transparent 65%);
    pointer-events: none;
}

.tc-hero-left {
    position: relative;
    z-index: 1;
}

.tc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-pale);
    border: 1px solid #bfdbfe;
    border-radius: 40px;
    padding: 6px 14px 6px 8px;
    font-size: .76rem;
    font-weight: 700;
    color: var(--blue2);
    margin-bottom: 24px;
    animation: fadeIn .6s ease both;
}

.tc-hero-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s infinite;
}

.tc-hero h1 {
    font-family: 'Instrument Serif', serif !important;
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--navy);
    letter-spacing: -.5px;
    margin-bottom: 20px;
    animation: fadeUp .7s .1s ease both;
}

.tc-hero h1 em {
    font-style: italic;
    color: var(--blue2);
}

.tc-hero h1 .strike {
    position: relative;
    color: var(--muted);
    opacity: .5;
    text-decoration: line-through;
}

.tc-hero-sub {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 480px;
    animation: fadeUp .7s .2s ease both;
}

.tc-hero-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeUp .7s .3s ease both;
}

.tc-hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeUp .7s .4s ease both;
}

.ht-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .82rem;
    color: var(--muted);
    font-weight: 500;
}

.ht-item svg {
    width: 15px;
    height: 15px;
    stroke: var(--green);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Hero right — resume mockup */

.tc-hero-right {
    position: relative;
    z-index: 1;
    animation: fadeUp .8s .25s ease both;
}

.resume-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 24px 80px rgba(10, 22, 40, .14), 0 4px 20px rgba(10, 22, 40, .06);
    overflow: hidden;
    position: relative;
    animation: floatY 5s ease-in-out infinite;
}

.resume-card-top {
    background: var(--navy);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.rc-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue3), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Instrument Serif', serif !important;
    font-size: 1.4rem;
    color: white;
    flex-shrink: 0;
}

.rc-name {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
}

.rc-role {
    color: rgba(255, 255, 255, .5);
    font-size: .8rem;
    margin-top: 3px;
}

.ats-badge {
    margin-left: auto;
    background: rgba(16, 185, 129, .15);
    border: 1px solid rgba(16, 185, 129, .3);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: .72rem;
    font-weight: 700;
    color: #6ee7b7;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.ats-badge span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 1.5s infinite;
    display: inline-block;
}

.resume-body {
    padding: 24px 32px;
}

.rc-section-label {
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blue2);
    margin-bottom: 12px;
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rc-section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--line);
}

.rc-line {
    height: 10px;
    background: var(--off);
    border-radius: 5px;
    margin-bottom: 8px;
}

.rc-line.w90 {
    width: 90%;
}

.rc-line.w75 {
    width: 75%;
}

.rc-line.w60 {
    width: 60%;
}

.rc-line.w45 {
    width: 45%;
}

.skills-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 10px;
}

.skill-tag {
    background: var(--blue-pale);
    color: var(--blue2);
    border: 1px solid #bfdbfe;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: .72rem;
    font-weight: 600;
}

/* Score badge overlay */

.score-card {
    position: absolute;
    bottom: -18px;
    left: -20px;
    background: white;
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 12px 40px rgba(10, 22, 40, .15);
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 180px;
}

.score-ring {
    width: 52px;
    height: 52px;
    position: relative;
    flex-shrink: 0;
}

.score-ring svg {
    width: 52px;
    height: 52px;
    transform: rotate(-90deg);
}

.score-ring .track {
    fill: none;
    stroke: var(--line);
    stroke-width: 4;
}

.score-ring .fill {
    fill: none;
    stroke: var(--green);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 126;
    stroke-dashoffset: 13;
    transition: stroke-dashoffset 1s ease;
}

.score-val {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 800;
    color: var(--navy);
    transform: rotate(0);
}

.score-info {
    flex: 1;
}

.score-info strong {
    font-size: .88rem;
    color: var(--navy);
    display: block;
}

.score-info span {
    font-size: .72rem;
    color: var(--muted);
}

.delivery-card {
    position: absolute;
    top: 20px;
    right: -24px;
    background: var(--navy);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(10, 22, 40, .25);
}

.delivery-ico {
    font-size: 1.4rem;
}

.delivery-info strong {
    font-size: .82rem;
    color: white;
    display: block;
    line-height: 1.2;
}

.delivery-info span {
    font-size: .7rem;
    color: rgba(255, 255, 255, .5);
}

/* ─── TICKER ──────────────────────────────────── */

.ticker-wrap {
    background: var(--navy);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-inner {
    display: inline-flex;
    animation: marquee 28s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 28px;
    font-size: .82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .55);
}

.ticker-item strong {
    color: white;
}

.ticker-sep {
    color: var(--blue3);
    opacity: .5;
}

/* ─── SOCIAL PROOF BAR ────────────────────────── */

.proof-bar {
    background: var(--off);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 28px 6%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 10px 44px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 1px;
    background: var(--line);
}

.stat-num {
    font-family: 'Instrument Serif', serif !important;
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--navy);
    line-height: 1;
    display: block;
}

.stat-num span {
    color: var(--blue2);
}

.stat-label {
    font-size: .78rem;
    color: var(--muted);
    font-weight: 500;
    margin-top: 4px;
}

/* ─── SECTION BASE ────────────────────────────── */

section {
    padding: 96px 6%;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--blue-pale);
    border: 1px solid #bfdbfe;
    border-radius: 30px;
    padding: 5px 14px;
    font-size: .72rem;
    font-weight: 700;
    color: var(--blue2);
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-h2 {
    font-family: 'Instrument Serif', serif !important;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: var(--navy);
    letter-spacing: -.3px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-h2 em {
    font-style: italic;
    color: var(--blue2);
}

.section-sub {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 560px;
}

.text-center {
    text-align: center;
}

.text-center .section-sub {
    margin: 0 auto;
}

/* ─── HOW IT WORKS ────────────────────────────── */

.how {
    background: var(--off);
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 64px;
    position: relative;
}

.steps-row::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--blue2) 0, var(--blue2) 12px, transparent 12px, transparent 24px);
}

.step-card {
    text-align: center;
    padding: 0 24px;
    position: relative;
}

.step-num-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: white;
    border: 2.5px solid var(--blue2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: 'Instrument Serif', serif !important;
    font-size: 1.4rem;
    color: var(--blue2);
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 6px var(--off);
}

.step-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.step-card p {
    font-size: .86rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ─── PACKAGES ────────────────────────────────── */

.packages {
    background: white;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 56px;
    align-items: start;
}

.pkg-card {
    border: 1.5px solid var(--line);
    border-radius: 20px;
    padding: 32px 28px;
    position: relative;
    transition: all .28s ease;
    background: white;
}

.pkg-card:hover {
    border-color: var(--blue3);
    box-shadow: 0 16px 50px rgba(37, 99, 235, .1);
    transform: translateY(-4px);
}

.pkg-card.featured {
    border-color: var(--blue2);
    box-shadow: 0 20px 60px rgba(37, 99, 235, .15);
    transform: scale(1.03);
}

.pkg-card.featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.pkg-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue2);
    color: white;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .5px;
    padding: 5px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.pkg-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.pkg-name {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
}

.pkg-target {
    font-size: .78rem;
    color: var(--muted);
    margin-bottom: 20px;
}

.pkg-price {
    font-family: 'Instrument Serif', serif !important;
    font-size: 2.4rem;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 4px;
}

.pkg-price span {
    font-size: 1.1rem;
    vertical-align: super;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
}

.pkg-price sub {
    font-size: .8rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--muted);
    font-weight: 400;
    vertical-align: baseline;
}

.pkg-old {
    font-size: .82rem;
    color: var(--muted);
    text-decoration: line-through;
    margin-bottom: 24px;
}

.pkg-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.pkg-features li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.45;
}

.pkg-features li svg {
    width: 15px;
    height: 15px;
    stroke: var(--green);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    margin-top: 1px;
}

.pkg-btn {
    width: 100%;
    padding: 13px;
    font-family: inherit;
    font-size: .9rem;
    font-weight: 700;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all .22s;
}

.pkg-btn-outline {
    background: var(--off);
    color: var(--navy);
    border: 1.5px solid var(--line);
}

.pkg-btn-outline:hover {
    border-color: var(--blue2);
    color: var(--blue2);
    background: var(--blue-pale);
}

.pkg-btn-filled {
    background: var(--blue2);
    color: white;
    box-shadow: 0 4px 16px rgba(37, 99, 235, .3);
}

.pkg-btn-filled:hover {
    background: var(--blue);
    box-shadow: 0 8px 24px rgba(37, 99, 235, .38);
    color: #fff !important
}

.pkg-divider {
    height: 1px;
    background: var(--line);
    margin-bottom: 24px;
}

/* ─── ATS FEATURE SECTION ─────────────────────── */

.ats-section {
    background: var(--navy);
    overflow: hidden;
    position: relative;
}

.ats-section::before {
    content: '';
    position: absolute;
    top: -300px;
    right: -200px;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, .2) 0%, transparent 65%);
    pointer-events: none;
}

.ats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ats-grid .section-h2 {
    color: white;
}

.ats-grid .section-sub {
    color: rgba(255, 255, 255, .55);
}

.ats-grid .section-tag {
    background: rgba(37, 99, 235, .25);
    border-color: rgba(96, 165, 250, .3);
    color: #93c5fd;
}

.ats-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

.ats-feat {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.ats-feat-ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(37, 99, 235, .2);
    border: 1px solid rgba(96, 165, 250, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ats-feat-ico svg {
    width: 20px;
    height: 20px;
    stroke: #60a5fa;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ats-feat h4 {
    font-size: .95rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.ats-feat p {
    font-size: .84rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.6;
}

/* ATS Meter visual */

.ats-visual {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    padding: 32px;
}

.ats-meter-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.ats-meter-label span {
    font-size: .8rem;
    color: rgba(255, 255, 255, .6);
    font-weight: 600;
}

.ats-meter-label strong {
    font-size: .8rem;
    color: white;
}

.meter-bar {
    height: 10px;
    background: rgba(255, 255, 255, .1);
    border-radius: 10px;
    margin-bottom: 18px;
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    border-radius: 10px;
}

.meter-green {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.meter-blue {
    background: linear-gradient(90deg, var(--blue2), var(--blue3));
}

.meter-amber {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.ats-score-big {
    text-align: center;
    padding: 24px 0 16px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 8px;
}

.ats-score-big .num {
    font-family: 'Instrument Serif', serif !important;
    font-size: 4rem;
    color: #34d399;
    line-height: 1;
}

.ats-score-big .lbl {
    font-size: .82rem;
    color: rgba(255, 255, 255, .5);
    margin-top: 4px;
}

/* ─── AUDIENCES ───────────────────────────────── */

.audiences {
    background: var(--off);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 56px;
}

.aud-card {
    background: white;
    border: 1.5px solid var(--line);
    border-radius: 18px;
    padding: 28px 24px;
    transition: all .25s ease;
    cursor: default;
}

.aud-card:hover {
    border-color: var(--blue3);
    box-shadow: 0 12px 40px rgba(37, 99, 235, .09);
    transform: translateY(-3px);
}

.aud-icon {
    font-size: 2rem;
    margin-bottom: 23px;
    width: 32px;
    height: 32px;
}

.aud-card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.aud-card p {
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 18px;
}

.aud-includes {
    display: flex;
    flex-direction: column;
    gap: 7px;
	margin-bottom: 40px;
}
.aud-card .pkg-btn{
	font-size: 13px;
	 letter-spacing: 1px
}
.aud-card .bi-linkedin{
	color: #004399
}
.aud-inc-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    color: var(--muted);
}

.aud-inc-item svg {
    width: 13px;
    height: 13px;
    stroke: var(--blue2);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    flex-shrink: 0;
}

.aud-chip {
    display: inline-block;
    margin-top: 16px;
    background: var(--blue-pale);
    color: var(--blue2);
    font-size: .72rem;
    font-weight: 700;
    border-radius: 20px;
    padding: 4px 12px;
    border: 1px solid #bfdbfe;
}
.img-u{
	display: block;
    width: 100px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8px;
}
/* ─── TESTIMONIALS ────────────────────────────── */

.testimonials {
    background: white;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.testi-card {
    border: 1.5px solid var(--line);
    border-radius: 18px;
    padding: 28px;
    position: relative;
    transition: all .25s;
}

.testi-card:hover {
    border-color: var(--blue3);
    box-shadow: 0 10px 36px rgba(37, 99, 235, .08);
}

.testi-card.featured-t {
    border-color: var(--blue2);
}

.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.star {
    color: var(--amber);
    font-size: 1rem;
}

.testi-text {
    font-size: .92rem;
    color: var(--text);
    line-height: 1.72;
    margin-bottom: 22px;
    font-style: italic;
}

.testi-text::before {
    content: '\201C';
    font-family: 'Instrument Serif', serif !important;
    font-size: 1.5rem;
    color: var(--blue2);
    line-height: 0;
    vertical-align: -.3em;
    margin-right: 2px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue2), var(--blue3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: .85rem;
    flex-shrink: 0;
}

.testi-name {
    font-size: .88rem;
    font-weight: 700;
    color: var(--navy);
}

.testi-role {
    font-size: .76rem;
    color: var(--muted);
    margin-top: 1px;
}

.testi-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--blue-pale);
    border: 1px solid #bfdbfe;
    border-radius: 6px;
    padding: 3px 10px;
    font-size: .68rem;
    font-weight: 700;
    color: var(--blue2);
}

/* ─── WHY US ──────────────────────────────────── */

.why-us {
    background: var(--off);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.why-card {
    background: white;
    border: 1.5px solid var(--line);
    border-radius: 16px;
    padding: 28px;
    transition: all .25s;
}

.why-card:hover {
    border-color: var(--blue3);
    box-shadow: 0 8px 30px rgba(37, 99, 235, .08);
}

.why-ico {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--blue-pale);
    border: 1px solid #bfdbfe;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.why-ico svg {
    width: 22px;
    height: 22px;
    stroke: var(--blue2);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.why-card p {
    font-size: .86rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ─── FAQ ─────────────────────────────────────── */

.faq {
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 56px;
}

.faq-item {
    border: 1.5px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .2s;
}

.faq-item.open {
    border-color: var(--blue3);
}

.faq-q {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    font-size: .93rem;
    font-weight: 700;
    color: var(--navy);
}

.faq-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--off);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .25s;
}

.faq-icon svg {
    width: 13px;
    height: 13px;
    stroke: var(--muted);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    transition: transform .3s;
}

.faq-item.open .faq-icon {
    background: var(--blue2);
    border-color: var(--blue2);
}

.faq-item.open .faq-icon svg {
    stroke: white;
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .3s;
}

.faq-a-inner {
    padding: 0 24px 20px;
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.7;
}

.faq-item.open .faq-a {
    max-height: 200px;
}

/* ─── CTA SECTION ─────────────────────────────── */

.cta-section {
    background: var(--blue2);
    padding: 96px 6%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .08), transparent 65%);
    pointer-events: none;
}

.cta-section h2 {
    font-family: 'Instrument Serif', serif !important;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: white;
    font-weight: 400;
    letter-spacing: -.3px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-section h2 em {
    font-style: italic;
    color: #bfdbfe;
}

.cta-section p {
    color: rgba(255, 255, 255, .7);
    font-size: 1.05rem;
    margin-bottom: 40px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-white {
    background: white;
    color: var(--blue2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, .2);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, .4);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, .1);
    border-color: white;
}

/* ─── FOOTER ──────────────────────────────────── */

footer {
    background: var(--navy);
    padding: 72px 6% 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-brand .nav-logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: .86rem;
    color: rgba(255, 255, 255, .45);
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    cursor: pointer;
}

.social-btn:hover {
    background: var(--blue2);
    border-color: var(--blue2);
}

.social-btn svg {
    width: 16px;
    height: 16px;
    stroke: rgba(255, 255, 255, .5);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
}

.social-btn:hover svg {
    stroke: white;
}

.footer-col h4 {
    font-size: .82rem;
    font-weight: 800;
    color: white;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: .84rem;
    color: rgba(255, 255, 255, .45);
    transition: color .2s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: .78rem;
    color: rgba(255, 255, 255, .3);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: .78rem;
    color: rgba(255, 255, 255, .3);
    transition: color .2s;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Trust strip in footer */

.footer-trust {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.ft-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 7px;
    padding: 7px 12px;
    font-size: .74rem;
    color: rgba(255, 255, 255, .5);
    font-weight: 500;
}

.ft-badge svg {
    width: 12px;
    height: 12px;
    stroke: #4ade80;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
}

/* ─── FLOATING CTA ────────────────────────────── */

.float-cta {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: var(--blue2);
    color: white;
    border-radius: 50px;
    padding: 14px 24px;
    font-family: inherit;
    font-size: .88rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(37, 99, 235, .45);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 50;
    transition: all .25s;
    animation: fadeUp .5s 1s ease both;
}

.float-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(37, 99, 235, .55);
}

.float-cta svg {
    width: 16px;
    height: 16px;
    stroke: white;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
}
.you-new .owl-nav{
		display: block !important
	}
	.you-new .owl-nav button{
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: #fff !important;
  border: none;
  border-radius: 50% !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: 0.3s;
  z-index: 10;
}

.you-new  .owl-nav button:hover {
  background:  #203864 !important;
  color: #fff !important;
}

.you-new  .owl-prev {
  left: -26px;
}

.you-new  .owl-next {
  right: -26px;
}
.you-new-title{
	    font-family: 'Instrument Serif', serif !important;
    font-size: 34px;
    font-weight: 400;
    color: var(--navy);
    letter-spacing: 1.7px;
    line-height: 1.15;
    margin-bottom: 16px;
    margin-top: 40px;
	text-align: center
}
.you-new-title em{
	
}
.new-hero{
text-align:center;
padding-top:90px;
padding-bottom: 90px;
background:radial-gradient(circle at top,#e0ecff,#f8fafc);
}
.new-hero h1{
	font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
}
.new-hero p{max-width:650px;margin:20px auto 35px}
.new-cta p{margin:15px auto 25px;max-width:600px}
.btn-serv-new {
    background: linear-gradient(135deg, #2563eb, #1e3a8a);
    color: #fff !important;
    box-shadow: 0 15px 35px rgba(37, 99, 235, .35);
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: .25s;
	cursor: pointer
}
.new-hero.new-hero-btm{
    position: relative;
    z-index: 0;
}
.btn-serv-new:hover {
    transform: translateY(-3px);
}
.tc-yt-subscribe {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  padding: 15px 30px;
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
  background: var(--blue-pale);
  border: 1px solid #bfdbfe;
  border-radius: 50px;
  text-decoration: none;
  transition: all .25s ease;
}

.tc-yt-subscribe i {
  font-size: 1.2rem;
  color: #FF0000; /* YouTube Red */
}

.tc-yt-subscribe:hover {
  transform: translateY(-2px);
  border-color: #93c5fd;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.18);
  background: #eef4ff;
}
/* ─── RESPONSIVE ──────────────────────────────── */

@media (max-width: 1100px) {
    .packages-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .tc-hero {
        grid-template-columns: 1fr;
        padding: 60px 6% 50px;
    }
    .tc-hero-right {
        display: none;
    }
    .ats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .audience-grid {
        grid-template-columns: 1fr 1fr;
    }
    .testi-grid {
        grid-template-columns: 1fr;
    }
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .proof-bar {
        gap: 0;
    }
    .stat-item {
        padding: 10px 24px;
    }
    .steps-row {
        grid-template-columns: 1fr 1fr;
    }
    .steps-row::before {
        display: none;
    }
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .packages-grid {
        grid-template-columns: 1fr;
    }
    .audience-grid {
        grid-template-columns: 1fr;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .tc-hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    section {
        padding: 64px 5%;
    }
}