/* ===== HERO REDESIGNED ===== */
.hero-redesigned {
    position: relative;
    padding: 70px 0 80px;
    background: linear-gradient(135deg, #f8faff 0%, #eef2fb 50%, #fff5ec 100%);
    overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}
.shape-1 { top: -100px; left: -80px; width: 380px; height: 380px; background: radial-gradient(circle, rgba(249, 115, 22, 0.35), transparent 70%); }
.shape-2 { bottom: -120px; right: -100px; width: 450px; height: 450px; background: radial-gradient(circle, rgba(30, 58, 138, 0.25), transparent 70%); }
.shape-3 { top: 40%; left: 45%; width: 300px; height: 300px; background: radial-gradient(circle, rgba(251, 146, 60, 0.18), transparent 70%); }
.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(30, 58, 138, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 58, 138, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
}
.hero-redesigned .container { position: relative; z-index: 2; }

/* ===== LEFT CONTENT ===== */
.hero-content-new { padding-right: 10px; }
.hero-trust-pill {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 16px;
    background: #ffffff;
    border: 1px solid rgba(30, 58, 138, 0.12);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 22px;
    box-shadow: 0 4px 14px rgba(30, 58, 138, 0.08);
}
.pulse-dot {
    position: relative;
    width: 8px; height: 8px;
    background: #f97316;
    border-radius: 50%;
}
.pulse-dot::before {
    content: '';
    position: absolute; inset: -4px;
    border-radius: 50%;
    background: #f97316;
    opacity: 0.5;
    animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
    0% { transform: scale(0.6); opacity: 0.7; }
    100% { transform: scale(1.8); opacity: 0; }
}
.hero-title {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    color: #0f172a;
    margin: 0 0 20px;
    letter-spacing: -1px;
}
.hero-title::after {
    content: ''; display: block;
    width: 80px; height: 4px;
    background: linear-gradient(90deg, #f97316, #fb923c);
    border-radius: 4px;
    margin-top: 18px;
}
.hero-description {
    font-size: 16px;
    line-height: 1.75;
    color: #475569;
    margin: 0 0 24px;
    max-width: 600px;
}
.hero-highlights {
    display: flex; flex-wrap: wrap;
    gap: 10px 22px;
    padding: 0; margin: 0 0 30px;
    list-style: none;
}
.hero-highlights li {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14.5px;
    font-weight: 600;
    color: #0f172a;
}
.hero-highlights svg {
    background: #f97316;
    color: #fff;
    padding: 3px;
    border-radius: 50%;
}

/* CTA Buttons */
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero-btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
.hero-btn-primary::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #f97316, #fb923c);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 0;
}
.hero-btn-primary > * { position: relative; z-index: 1; }
.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
    color: #fff;
}
.hero-btn-primary:hover::before { opacity: 1; }
.hero-btn-primary:hover svg { transform: translateX(4px); }
.hero-btn-primary svg { transition: transform 0.3s ease; }

.hero-btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 15px 28px;
    background: transparent;
    color: #1e3a8a;
    border: 2px solid #1e3a8a;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.hero-btn-ghost:hover {
    background: #1e3a8a;
    color: #fff;
    transform: translateY(-3px);
}

/* Trust Bar */
.hero-trust-bar {
    padding-top: 26px;
    border-top: 1px dashed rgba(30, 58, 138, 0.15);
}
.trust-bar-label {
    font-size: 12.5px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 14px;
}
.trust-bar-items {
    display: flex; flex-wrap: wrap;
    align-items: center;
    gap: 18px 28px;
}
.trust-item img {
    max-height: 50px;
    width: auto;
    filter: grayscale(20%);
    opacity: 0.92;
    transition: all 0.3s ease;
}
.trust-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* ===== FORM CARD ===== */
.hero-form-card {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(30, 58, 138, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
}
.form-card-glow {
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.3), rgba(30, 58, 138, 0.3));
    border-radius: 24px;
    z-index: -1;
    filter: blur(20px);
    opacity: 0.5;
}
.form-card-header { text-align: center; margin-bottom: 22px; }
.form-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px;
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.form-title {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 6px;
    line-height: 1.3;
}
.form-subtitle {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* Form Fields */
.hero-form .alert { border-radius: 10px; font-size: 13px; padding: 10px 14px; }
.form-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 14px;
}
.form-group-new { margin-bottom: 14px; }
.form-group-new label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}
.input-wrap { position: relative; }
.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
    transition: color 0.25s ease;
    z-index: 2;
}
.textarea-icon { top: 16px; transform: none; }
.form-control-new {
    width: 100%;
    padding: 12px 14px 12px 42px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    color: #0f172a;
    transition: all 0.25s ease;
    font-family: inherit;
}
.form-control-new::placeholder { color: #94a3b8; }
.form-control-new:focus {
    outline: none;
    background: #fff;
    border-color: #f97316;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}
.form-control-new:focus ~ .input-icon,
.input-wrap:focus-within .input-icon { color: #f97316; }
textarea.form-control-new {
    min-height: 90px;
    resize: vertical;
    padding-top: 12px;
}
.phone-input { padding-left: 14px; }
/* Override intl-tel-input padding if used */
.iti--allow-dropdown .form-control-new { padding-left:75px !important; }

.invalid-feedback strong { font-size: 12px; color: #dc2626; }

.form-submit-btn {
    width: 100%;
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.35);
    transition: all 0.3s ease;
    margin-top: 4px;
    position: relative;
    overflow: hidden;
}
.form-submit-btn::before {
    content: '';
    position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}
.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.5);
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
}
.form-submit-btn:hover::before { left: 100%; }
.form-submit-btn:hover svg { transform: translateX(4px); }
.form-submit-btn svg { transition: transform 0.3s ease; }

.form-footer-note {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    font-size: 12px;
    color: #64748b;
    margin: 14px 0 0;
}
.form-footer-note svg { color: #16a34a; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-redesigned { padding: 50px 0 60px; }
    .hero-content-new { padding-right: 0; margin-bottom: 40px; text-align: center; }
    .hero-title::after { margin-left: auto; margin-right: auto; }
    .hero-description { margin-left: auto; margin-right: auto; }
    .hero-highlights { justify-content: center; }
    .hero-cta-group { justify-content: center; }
    .trust-bar-items { justify-content: center; }
}
@media (max-width: 767px) {
    .hero-redesigned { padding: 40px 0 50px; }
    .hero-form-card { padding: 28px 22px; border-radius: 20px; }
    .form-row-grid { grid-template-columns: 1fr; gap: 0; }
    .hero-btn-primary, .hero-btn-ghost { padding: 13px 24px; font-size: 14px; }
    .form-title { font-size: 19px; }
    .hero-trust-pill { font-size: 11.5px; padding: 7px 14px; }
}
@media (max-width: 480px) {
    .hero-cta-group { flex-direction: column; align-items: stretch; }
    .hero-btn-primary, .hero-btn-ghost { justify-content: center; width: 100%; }
    .trust-bar-items { gap: 14px 18px; }
    .trust-item img { max-height: 38px; }
    .hero-highlights { gap: 8px 14px; font-size: 13px; }
}



/* ============================================
   UNIVERSITIES SECTION
============================================ */
.universities-redesigned {
    position: relative;
    padding: 80px 0 70px;
    background: #ffffff;
    overflow: hidden;
}
.uni-bg-decor { position: absolute; inset: 0; pointer-events: none; }
.uni-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.35;
}
.uni-shape-1 {
    top: -80px; left: -60px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.25), transparent 70%);
}
.uni-shape-2 {
    bottom: -100px; right: -60px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.18), transparent 70%);
}
.universities-redesigned .container { position: relative; z-index: 2; }

.uni-header { margin-bottom: 50px; }
.uni-eyebrow {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 7px 16px;
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 18px;
    border: 1px solid rgba(249, 115, 22, 0.2);
}
.uni-title {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
}
.uni-title::after {
    content: '';
    display: block;
    width: 70px; height: 4px;
    background: linear-gradient(90deg, #f97316, #fb923c);
    border-radius: 4px;
    margin: 18px auto 0;
}
.uni-subtitle {
    font-size: 15.5px;
    line-height: 1.75;
    color: #475569;
    max-width: 820px;
    margin: 0 auto;
}

/* Slider */
.uni-slider-wrap {
    position: relative;
    padding: 20px 0 10px;
}
.uni-fade {
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 3;
    pointer-events: none;
}
.uni-fade-left {
    left: 0;
    background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.8) 60%, transparent 100%);
}
.uni-fade-right {
    right: 0;
    background: linear-gradient(-90deg, #fff 0%, rgba(255,255,255,0.8) 60%, transparent 100%);
}
.uni-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 5px;
}
.uni-logo-card {
    width: 100%;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #eef2f7;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 18px 22px;
}
.uni-logo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(30, 58, 138, 0.12);
    border-color: rgba(249, 115, 22, 0.3);
}
.uni-logo-link { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.uni-logo-card img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(60%);
    opacity: 0.78;
    transition: all 0.4s ease;
}
.uni-logo-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}


/* ============================================
   SERVICES SECTION
============================================ */
.services-redesigned {
    position: relative;
    padding: 80px 0 90px;
    background: linear-gradient(180deg, #f8faff 0%, #eef2fb 100%);
    overflow: hidden;
}
.srv-bg-decor { position: absolute; inset: 0; pointer-events: none; }
.srv-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}
.srv-shape-1 {
    top: 10%; left: -100px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.2), transparent 70%);
}
.srv-shape-2 {
    bottom: 5%; right: -120px;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.18), transparent 70%);
}
.srv-pattern {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle, rgba(30, 58, 138, 0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.services-redesigned .container { position: relative; z-index: 2; }

.srv-header { margin-bottom: 50px; }
.srv-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 16px;
    background: rgba(30, 58, 138, 0.08);
    color: #1e3a8a;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 18px;
    border: 1px solid rgba(30, 58, 138, 0.15);
}
.srv-eyebrow-dot {
    width: 8px; height: 8px;
    background: #f97316;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.2);
}
.srv-title {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
}
.srv-title::after {
    content: '';
    display: block;
    width: 70px; height: 4px;
    background: linear-gradient(90deg, #f97316, #fb923c);
    border-radius: 4px;
    margin: 18px auto 0;
}
.srv-subtitle {
    font-size: 15.5px;
    line-height: 1.75;
    color: #475569;
    max-width: 760px;
    margin: 0 auto;
}

/* Service Grid */
.srv-grid { margin-bottom: 40px; }
.srv-card-wrap {
    padding: 8px;
    opacity: 0;
    transform: translateY(20px);
    animation: srvFadeUp 0.5s ease forwards;
    animation-delay: calc(var(--i, 0) * 0.05s);
}
@keyframes srvFadeUp {
    to { opacity: 1; transform: translateY(0); }
}
.srv-card-link { text-decoration: none !important; display: block; }
.srv-card {
    position: relative;
    display: flex !important;
    align-items: center;
    gap: 14px;
    padding: 18px 15px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14.5px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.4;
    margin: 0;
    overflow: hidden;
}
.srv-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #f97316, #fb923c);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.35s ease;
}
.srv-card:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.12);
    color: #1e3a8a;
}
.srv-card:hover::before { transform: scaleY(1); }
.srv-card:hover .srv-card-icon {
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: #fff;
    transform: rotate(180deg);
}
.srv-card:hover .srv-card-arrow {
    opacity: 1;
    transform: translateX(0);
    color: #f97316;
}

.srv-card-icon {
    flex-shrink: 0;
    width: 38px; height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
    border-radius: 10px;
    transition: all 0.4s ease;
}
.srv-card-title {
    flex: 1;
    font-family: inherit;
}
.srv-card-arrow {
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.35s ease;
    color: #94a3b8;
}

/* CTA Button */
.srv-cta-wrap { margin-top: 20px; }
.srv-cta-btn {
    gap: 10px;
    padding: 15px 34px !important;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%) !important;
    color: #fff !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    text-decoration: none !important;
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    border: none !important;
}
.srv-cta-btn::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #f97316, #fb923c);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 0;
}
.srv-cta-btn > * { position: relative; z-index: 1; }
.srv-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
    color: #fff !important;
}
.srv-cta-btn:hover::before { opacity: 1; }
.srv-cta-btn:hover svg { transform: translateX(4px); }
.srv-cta-btn svg { transition: transform 0.3s ease; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 991px) {
    .universities-redesigned { padding: 60px 0 50px; }
    .services-redesigned { padding: 60px 0 70px; }
    .uni-header, .srv-header { margin-bottom: 40px; }
    .uni-fade { width: 60px; }
    .uni-logo-card { height: 95px; padding: 14px 18px; }
}
@media (max-width: 767px) {
    .uni-title, .srv-title { font-size: 24px; }
    .uni-subtitle, .srv-subtitle { font-size: 14.5px; }
    .uni-eyebrow, .srv-eyebrow { font-size: 11px; padding: 6px 14px; }
    .srv-card { padding: 14px 14px; font-size: 13.5px; gap: 10px; }
    .srv-card-icon { width: 34px; height: 34px; }
    .srv-cta-btn { padding: 13px 26px !important; font-size: 14px !important; }
    .uni-fade { width: 40px; }
    .uni-logo-card { height: 85px; }
    .uni-logo-card img { max-height: 48px; }
}
@media (max-width: 480px) {
    .srv-card { padding: 13px 12px; }
    .srv-card-arrow { display: none; }
}


/* ============================================
   3-STEPS SECTION REDESIGNED
============================================ */
.steps-redesigned {
    position: relative;
    padding: 80px 0 90px;

    overflow: hidden;
}
.steps-bg-decor { position: absolute; inset: 0; pointer-events: none; }
.steps-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}
.steps-shape-1 {
    top: 5%; left: -120px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.22), transparent 70%);
}
.steps-shape-2 {
    bottom: 5%; right: -120px;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.2), transparent 70%);
}
.steps-pattern {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle, rgba(30, 58, 138, 0.06) 1px, transparent 1px);
    background-size: 30px 30px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.steps-redesigned .container { position: relative; z-index: 2; }

/* Header */
.steps-header { margin-bottom: 55px; }
.steps-eyebrow {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 7px 16px;
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 18px;
    border: 1px solid rgba(249, 115, 22, 0.2);
}
.steps-title {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
    margin: 0;
    letter-spacing: -0.5px;
}
.steps-title::after {
    content: '';
    display: block;
    width: 70px; height: 4px;
    background: linear-gradient(90deg, #f97316, #fb923c);
    border-radius: 4px;
    margin: 18px auto 0;
}

/* LEFT: Visual */
.steps-visual-wrap {
    position: relative;
    padding: 10px;
}
.steps-visual-glow {
    position: absolute;
    top: 20px; left: 20px; right: 20px; bottom: 20px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.4), rgba(30, 58, 138, 0.4));
    border-radius: 24px;
    filter: blur(40px);
    opacity: 0.5;
    z-index: 0;
}
.steps-visual-frame {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(30, 58, 138, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.8);
    z-index: 1;
    overflow: hidden;
}
.steps-visual-frame::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 32px;
    background: linear-gradient(180deg, #f1f5f9, #ffffff);
    border-bottom: 1px solid #e2e8f0;
    z-index: 2;
}
.steps-visual-frame::after {
    content: '';
    position: absolute;
    top: 12px; left: 18px;
    width: 8px; height: 8px;
    background: #f97316;
    border-radius: 50%;
    box-shadow: 14px 0 0 #fbbf24, 28px 0 0 #22c55e;
    z-index: 3;
}
.steps-tab-content {
    position: relative;
    margin-top: 32px;
    border-radius: 14px;
    overflow: hidden;
    background: #f8fafc;
}
.steps-visual-img {
    width: 100%;
    overflow: hidden;
}
.steps-visual-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.5s ease;
}
.steps-visual-frame:hover .steps-visual-img img {
    transform: scale(1.02);
}

.steps-floating-badge {
    position: absolute;
    bottom: 30px;
    right: -10px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: #fff;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.35);
    z-index: 3;
    animation: floatBadge 3s ease-in-out infinite;
}
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* RIGHT: Tabs */
.steps-tabs-wrap { padding-left: 10px; }
.steps-tabs-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.steps-tab-item { width: 100%; }
.steps-tab-link {
    position: relative;
    display: block !important;
    padding: 20px 22px !important;
    background: #ffffff !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 16px !important;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}
.steps-tab-link::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #f97316, #fb923c);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}
.steps-tab-link:hover {
    border-color: rgba(249, 115, 22, 0.3) !important;
    transform: translateX(4px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}
.steps-tab-link.active {

    background: linear-gradient(135deg, #ffffff 0%, #fff8f3 100%) !important;
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.15) !important;
    transform: translateX(0);
}
.steps-tab-link.active::before { transform: scaleY(1); }

.steps-tab-inner { width: 100%; }
.steps-tab-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}
.steps-tab-number {
    flex-shrink: 0;
    width: 44px; height: 44px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(30, 58, 138, 0.08) !important;
    color: #1e3a8a !important;
    border-radius: 12px !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    transition: all 0.35s ease;
    border: none !important;
}
.steps-tab-link.active .steps-tab-number {
    background: linear-gradient(135deg, #f97316, #fb923c) !important;
    color: #fff !important;
    box-shadow: 0 8px 18px rgba(249, 115, 22, 0.35);
    transform: rotate(-5deg) scale(1.05);
}
.steps-tab-title {
    flex: 1;
    margin: 0 !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    line-height: 1.35 !important;
    transition: color 0.3s ease;
}
.steps-tab-link.active .steps-tab-title { color: #1e3a8a !important; }

.steps-tab-arrow {
    flex-shrink: 0;
    width: 28px; height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.3s ease;
}
.steps-tab-link.active .steps-tab-arrow {
    color: #f97316;
    transform: rotate(90deg);
}

.steps-tab-desc {
    font-size: 14.5px;
    line-height: 1.7;
    color: #475569;
    margin: 0;
    padding-left: 58px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}
.steps-tab-link.active .steps-tab-desc {
    max-height: 200px;
    opacity: 1;
    margin-top: 4px;
}

/* CTA Button */
.steps-cta-wrap {
    margin-top: 28px;
    text-align: center;
}
.steps-cta-btn {
    gap: 10px;
    padding: 15px 34px !important;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%) !important;
    color: #fff !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    text-decoration: none !important;
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    border: none !important;
}
.steps-cta-btn::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #f97316, #fb923c);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 0;
}
.steps-cta-btn > * { position: relative; z-index: 1; }
.steps-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
    color: #fff !important;
}
.steps-cta-btn:hover::before { opacity: 1; }
.steps-cta-btn:hover svg { transform: translateX(4px); }
.steps-cta-btn svg { transition: transform 0.3s ease; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 991px) {
    .steps-redesigned { padding: 60px 0 70px; }
    .steps-header { margin-bottom: 40px; }
    .steps-tabs-wrap { padding-left: 0; margin-top: 30px; }
    .steps-floating-badge { bottom: 20px; right: 10px; }
}
@media (max-width: 767px) {
    .steps-redesigned { padding: 50px 0 60px; }
    .steps-title { font-size: 24px; }
    .steps-eyebrow { font-size: 11px; padding: 6px 14px; }
    .steps-visual-frame { padding: 16px; border-radius: 18px; }
    .steps-tab-content { margin-top: 28px; }
    .steps-tab-link { padding: 16px 18px !important; border-radius: 14px !important; }
    .steps-tab-number { width: 38px; height: 38px; font-size: 15px !important; }
    .steps-tab-title { font-size: 15px !important; }
    .steps-tab-desc { padding-left: 0; font-size: 13.5px; }
    .steps-tab-link.active .steps-tab-desc { padding-left: 0; }
    .steps-tab-header { gap: 12px; }
    .steps-cta-btn { padding: 13px 26px !important; font-size: 14px !important; }
}
@media (max-width: 480px) {
    .steps-floating-badge { font-size: 11px; padding: 7px 14px; bottom: 15px; }
    .steps-visual-frame::after { left: 14px; }
    .steps-tab-arrow { display: none; }
}