/* The IT Pro — Premium Landing Page */
:root,
[data-theme="light"] {
    --tip-bg: #f6f8fc;
    --tip-bg-elevated: #ffffff;
    --tip-bg-muted: #eef2f9;
    --tip-text: #0f172a;
    --tip-text-muted: #64748b;
    --tip-border: rgba(15, 23, 42, 0.08);
    --tip-primary: #2563eb;
    --tip-primary-hover: #1d4ed8;
    --tip-accent: #14b8a6;
    --tip-accent-glow: rgba(20, 184, 166, 0.35);
    --tip-gradient: linear-gradient(135deg, #2563eb 0%, #14b8a6 100%);
    --tip-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.15);
    --tip-nav-bg: rgba(255, 255, 255, 0.85);
    --tip-hero-bg: radial-gradient(ellipse 80% 60% at 70% 0%, rgba(37, 99, 235, 0.12), transparent),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(20, 184, 166, 0.1), transparent),
        var(--tip-bg);
}

[data-theme="dark"] {
    --tip-bg: #070b14;
    --tip-bg-elevated: #111827;
    --tip-bg-muted: #1a2332;
    --tip-text: #f1f5f9;
    --tip-text-muted: #94a3b8;
    --tip-border: rgba(255, 255, 255, 0.08);
    --tip-primary: #3b82f6;
    --tip-primary-hover: #60a5fa;
    --tip-accent: #2dd4bf;
    --tip-accent-glow: rgba(45, 212, 191, 0.25);
    --tip-gradient: linear-gradient(135deg, #3b82f6 0%, #2dd4bf 100%);
    --tip-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.5);
    --tip-nav-bg: rgba(7, 11, 20, 0.9);
    --tip-hero-bg: radial-gradient(ellipse 80% 60% at 70% 0%, rgba(59, 130, 246, 0.15), transparent),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(45, 212, 191, 0.08), transparent),
        var(--tip-bg);
}

body.tip-landing {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--tip-bg);
    color: var(--tip-text);
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
}

.tip-landing-main {
    padding-top: 76px;
}

.tip-public-page {
    padding-top: 76px;
    min-height: 50vh;
}

/* Nav */
.tip-landing-nav {
    background: var(--tip-nav-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--tip-border);
    transition: box-shadow 0.3s ease, padding 0.3s ease;
}

.tip-landing-nav.is-scrolled {
    box-shadow: var(--tip-shadow);
}

.tip-brand {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--tip-text) !important;
    letter-spacing: -0.02em;
}

.tip-brand-mark {
    background: var(--tip-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tip-nav-link {
    color: var(--tip-text-muted) !important;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.tip-nav-link:hover {
    color: var(--tip-primary) !important;
}

.navbar-toggler-icon {
    filter: var(--tip-toggler-filter, none);
}

[data-theme="dark"] .navbar-toggler-icon {
    --tip-toggler-filter: invert(1);
}

/* Buttons */
.btn-tip-primary {
    background: var(--tip-gradient);
    border: none;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 8px 24px -4px rgba(37, 99, 235, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-tip-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -4px rgba(37, 99, 235, 0.5);
}

.btn-tip-outline {
    border: 2px solid var(--tip-border);
    color: var(--tip-text);
    font-weight: 600;
    background: transparent;
}

.btn-tip-outline:hover {
    border-color: var(--tip-primary);
    color: var(--tip-primary);
    background: transparent;
}

.btn-tip-ghost {
    color: var(--tip-text-muted);
    font-weight: 500;
}

.btn-tip-ghost:hover {
    color: var(--tip-text);
    background: var(--tip-bg-muted);
}

.tip-nav-actions {
    width: 100%;
    justify-content: flex-end;
}

@media (min-width: 992px) {
    .tip-nav-actions {
        width: auto;
    }
}

.tip-nav-auth {
    flex: 1 1 auto;
    justify-content: flex-end;
}

.tip-nav-user {
    max-width: 10rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn-tip-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--tip-border);
    background: var(--tip-bg-elevated);
    color: var(--tip-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* Sections */
.tip-section {
    padding: 5rem 0;
    position: relative;
}

.tip-section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--tip-accent);
    margin-bottom: 0.5rem;
}

.tip-section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--tip-text);
}

.tip-text-muted {
    color: var(--tip-text-muted);
}

/* Hero */
.tip-hero {
    padding: 0;
    background: var(--tip-hero-bg);
}

.tip-hero-bg {
    position: absolute;
    inset: 0;
    background: var(--tip-hero-bg);
    pointer-events: none;
}

.tip-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    background: var(--tip-bg-elevated);
    border: 1px solid var(--tip-border);
    color: var(--tip-accent);
}

.tip-hero-title {
    background: linear-gradient(135deg, var(--tip-text) 0%, var(--tip-text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] .tip-hero-title {
    background: linear-gradient(135deg, var(--tip-text) 0%, var(--tip-text-muted) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.tip-hero-lead {
    color: var(--tip-text-muted);
    max-width: 32rem;
}

.tip-stat-card {
    padding: 1rem;
    border-radius: 12px;
    background: var(--tip-bg-elevated);
    border: 1px solid var(--tip-border);
}

.tip-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--tip-primary);
}

.tip-stat-label {
    font-size: 0.75rem;
    color: var(--tip-text-muted);
}

.tip-hero-visual {
    position: relative;
}

.tip-float-card {
    position: absolute;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    background: var(--tip-bg-elevated);
    border: 1px solid var(--tip-border);
    box-shadow: var(--tip-shadow);
    font-size: 0.85rem;
    font-weight: 600;
    animation: tip-float 4s ease-in-out infinite;
}

.tip-float-1 { top: 10%; right: 5%; animation-delay: 0s; }
.tip-float-2 { bottom: 30%; left: 0; animation-delay: 1s; }
.tip-float-3 { bottom: 10%; right: 15%; animation-delay: 2s; }

@keyframes tip-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Cards */
.tip-feature-card,
.tip-program-card,
.tip-course-card,
.tip-kit-card,
.tip-pricing-card {
    background: var(--tip-bg-elevated);
    border: 1px solid var(--tip-border);
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
}

.tip-feature-card:hover,
.tip-program-card:hover,
.tip-course-card:hover,
.tip-kit-card:hover,
.tip-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--tip-shadow);
    border-color: rgba(37, 99, 235, 0.2);
}

.tip-feature-icon,
.tip-program-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background: var(--tip-gradient);
    color: #fff;
    margin-bottom: 1rem;
}

.tip-program-featured {
    border-color: var(--tip-primary);
    box-shadow: 0 0 0 1px var(--tip-primary), var(--tip-shadow);
}

.tip-course-card {
    display: flex;
    flex-direction: column;
}

.tip-course-level {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--tip-accent);
    margin-bottom: 0.5rem;
}

.tip-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--tip-primary);
}

/* Kit */
.tip-kit-img {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--tip-accent);
    margin-bottom: 1rem;
}

/* Testimonials */
.tip-testimonials {
    background: var(--tip-bg-muted);
}

.tip-testimonial {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem;
}

.tip-testimonial p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--tip-text);
    margin-bottom: 1rem;
}

.tip-testimonial footer {
    font-weight: 600;
    color: var(--tip-text-muted);
}

/* Videos */
.tip-video-mock {
    border-radius: 20px;
    padding: 1rem;
    background: var(--tip-bg-elevated);
    border: 1px solid var(--tip-border);
    box-shadow: var(--tip-shadow);
}

.tip-video-screen {
    aspect-ratio: 16/10;
    border-radius: 12px;
    background: linear-gradient(145deg, #1e293b, #0f172a);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    gap: 0.5rem;
}

.tip-video-screen i {
    font-size: 4rem;
    opacity: 0.9;
}

.tip-check-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.tip-check-list li {
    padding: 0.35rem 0;
    color: var(--tip-text-muted);
}

.tip-check-list i {
    color: var(--tip-accent);
    margin-right: 0.5rem;
}

/* Pricing */
.tip-pricing-card {
    position: relative;
    text-align: center;
}

.tip-pricing-popular {
    border-color: var(--tip-primary);
    transform: scale(1.03);
}

.tip-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--tip-gradient);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    white-space: nowrap;
}

.tip-pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 1rem 0;
    color: var(--tip-text);
}

.tip-pricing-price small {
    font-size: 1rem;
    font-weight: 500;
    color: var(--tip-text-muted);
}

/* FAQ */
.tip-faq-accordion .accordion-item {
    background: var(--tip-bg-elevated);
    border: 1px solid var(--tip-border);
    border-radius: 12px !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.tip-faq-accordion .accordion-button {
    background: transparent;
    color: var(--tip-text);
    font-weight: 600;
    box-shadow: none;
}

.tip-faq-accordion .accordion-button:not(.collapsed) {
    background: var(--tip-bg-muted);
    color: var(--tip-primary);
}

.tip-faq-accordion .accordion-body {
    background: var(--tip-bg-elevated);
}

/* Footer — always dark bar with light text (both themes) */
.tip-landing-footer {
    background: var(--academy-navy, #0a1628);
    color: var(--academy-text-on-dark, #fff);
    border-top: 1px solid var(--tip-border);
}

.tip-landing-footer .tip-brand,
.tip-landing-footer .tip-brand-footer {
    color: var(--academy-text-on-dark, #fff) !important;
}

.tip-landing-footer .tip-brand-mark {
    -webkit-text-fill-color: transparent;
}

.tip-landing-footer .tip-footer-heading {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    color: var(--academy-text-on-dark, #fff);
}

.tip-landing-footer .tip-footer-links a {
    color: var(--academy-muted-on-dark, rgba(255, 255, 255, 0.72));
    text-decoration: none;
    display: block;
    padding: 0.25rem 0;
    font-size: 0.9rem;
}

.tip-landing-footer .tip-footer-links a:hover {
    color: var(--academy-orange, var(--tip-primary));
}

.tip-landing-footer .tip-footer-text {
    color: var(--academy-muted-on-dark, rgba(255, 255, 255, 0.65));
    font-size: 0.9rem;
}

.tip-landing-footer .form-control {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
    color: var(--academy-text-on-dark, #fff);
}

.tip-landing-footer .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.tip-landing-footer .tip-footer-heading,
.tip-landing-footer .tip-footer-text,
.tip-landing-footer .tip-footer-links a,
.tip-landing-footer .tip-brand {
    transition: color 0.3s ease;
}

/* Scroll reveal */
.tip-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.tip-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.tip-reveal-delay { transition-delay: 0.15s; }
.tip-reveal-delay-2 { transition-delay: 0.3s; }

/* Career paths */
.tip-careers {
    background: var(--tip-bg-muted);
}

.tip-career-card {
    position: relative;
    background: var(--tip-bg-elevated);
    border: 1px solid var(--tip-border);
    border-radius: 20px;
    padding: 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
}

.tip-career-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--tip-shadow);
}

.tip-career-featured {
    border-color: var(--tip-primary);
    box-shadow: 0 0 0 1px var(--tip-primary), var(--tip-shadow);
}

.tip-career-level {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: var(--tip-bg-muted);
    color: var(--tip-accent);
    border: 1px solid var(--tip-border);
}

.tip-career-featured .tip-career-level {
    background: var(--tip-gradient);
    color: #fff;
    border: none;
}

.tip-career-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: var(--tip-gradient);
    color: #fff;
    margin-bottom: 1rem;
}

.tip-career-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.tip-career-desc {
    color: var(--tip-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.tip-career-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    flex-grow: 1;
}

.tip-career-features li {
    font-size: 0.85rem;
    color: var(--tip-text-muted);
    padding: 0.35rem 0;
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.tip-career-features i {
    color: var(--tip-accent);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.tip-career-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    font-size: 0.8rem;
    color: var(--tip-text-muted);
    margin-bottom: 0.25rem;
}

.tip-export-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--tip-primary);
    font-weight: 600;
}

/* Method */
.tip-method {
    background: var(--tip-bg-elevated);
}

.tip-method-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.tip-method-track::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--tip-primary), var(--tip-accent));
    opacity: 0.25;
    z-index: 0;
}

.tip-method-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.tip-method-num {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    background: var(--tip-gradient);
    color: #fff;
    box-shadow: 0 8px 20px -4px rgba(37, 99, 235, 0.45);
}

.tip-method-body h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tip-method-body p {
    font-size: 0.85rem;
    color: var(--tip-text-muted);
    margin: 0;
}

body.tip-landing {
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
}

.tip-hero-title {
    background: linear-gradient(135deg, var(--tip-text) 30%, var(--tip-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] .tip-hero-title {
    background: linear-gradient(135deg, var(--tip-text) 20%, var(--tip-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

/* IT Pro Room */
.tip-room {
    background: linear-gradient(160deg, var(--tip-bg-elevated) 0%, rgba(37, 211, 102, 0.06) 50%, var(--tip-bg-muted) 100%);
    border-top: 1px solid var(--tip-border);
    border-bottom: 1px solid var(--tip-border);
}

.tip-room-badge,
.tip-room-inline-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(37, 211, 102, 0.12);
    color: #128c7e;
    border: 1px solid rgba(37, 211, 102, 0.35);
}

[data-theme="dark"] .tip-room-badge,
[data-theme="dark"] .tip-room-inline-badge {
    color: #25d366;
    background: rgba(37, 211, 102, 0.15);
}

.btn-tip-room {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border: none;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 8px 24px -4px rgba(37, 211, 102, 0.45);
}

.btn-tip-room:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -4px rgba(37, 211, 102, 0.55);
}

.tip-room-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.tip-room-benefits li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    padding: 0.5rem 0;
    color: var(--tip-text-muted);
    font-size: 0.92rem;
}

.tip-room-benefits i {
    color: #25d366;
    margin-top: 0.15rem;
}

.tip-room-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--tip-text);
}

.tip-room-price small {
    font-size: 1rem;
    font-weight: 500;
    color: var(--tip-text-muted);
}

.tip-room-steps-card {
    background: var(--tip-bg-elevated);
    border: 1px solid var(--tip-border);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: var(--tip-shadow);
}

.tip-room-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.tip-room-steps li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.tip-room-steps li:last-child {
    margin-bottom: 0;
}

.tip-room-step-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    background: var(--tip-gradient);
    color: #fff;
}

.tip-room-steps p {
    margin: 0.25rem 0 0;
    font-size: 0.85rem;
    color: var(--tip-text-muted);
}

.tip-room-chat-mock {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--tip-border);
    background: #e5ddd5;
}

[data-theme="dark"] .tip-room-chat-mock {
    background: #1f2c34;
}

.tip-room-chat-header {
    background: #075e54;
    color: #fff;
    padding: 0.65rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.tip-room-chat-msg {
    margin: 0.5rem 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.8rem;
    max-width: 85%;
}

.tip-room-chat-in {
    background: #fff;
    color: #111;
}

.tip-room-chat-out {
    background: #dcf8c6;
    color: #111;
    margin-left: auto;
}

[data-theme="dark"] .tip-room-chat-in {
    background: #262d31;
    color: #e9edef;
}

[data-theme="dark"] .tip-room-chat-out {
    background: #056162;
    color: #e9edef;
}

.tip-nav-room {
    color: #128c7e !important;
    font-weight: 600 !important;
}

.tip-pricing-room {
    border-color: #25d366;
    box-shadow: 0 0 0 1px rgba(37, 211, 102, 0.35), var(--tip-shadow);
}

.tip-pricing-badge-room {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.tip-room-page-hero .tip-room-badge {
    margin-bottom: 0.5rem;
}

/* WOMEN In IT Support */
.tip-women {
    background: linear-gradient(165deg, var(--tip-bg-elevated) 0%, rgba(192, 38, 211, 0.05) 45%, rgba(236, 72, 153, 0.06) 100%);
}

.tip-women-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(192, 38, 211, 0.1);
    color: #a21caf;
    border: 1px solid rgba(192, 38, 211, 0.25);
}

[data-theme="dark"] .tip-women-badge {
    color: #e879f9;
    background: rgba(192, 38, 211, 0.18);
}

.tip-women-acronym {
    letter-spacing: 0.14em;
    color: var(--tip-accent);
}

.tip-women-pillars {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.tip-women-pillars li {
    display: flex;
    gap: 0.65rem;
    padding: 0.45rem 0;
    color: var(--tip-text-muted);
    font-size: 0.92rem;
}

.tip-women-pillars i {
    color: #c026d3;
    margin-top: 0.15rem;
}

.tip-women-price {
    font-size: 2rem;
    font-weight: 800;
}

.tip-women-visual {
    background: var(--tip-bg-elevated);
    border: 1px solid var(--tip-border);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--tip-shadow);
}

.tip-women-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.tip-women-stat {
    text-align: center;
    padding: 0.75rem 0.5rem;
    border-radius: 12px;
    background: var(--tip-bg-muted);
}

.tip-women-stat-val {
    display: block;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--tip-primary);
}

.tip-women-stat-lbl {
    font-size: 0.65rem;
    color: var(--tip-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.tip-women-quote {
    border-left: 3px solid #c026d3;
    padding-left: 1rem;
    font-style: italic;
    color: var(--tip-text-muted);
}

.tip-women-quote footer {
    font-style: normal;
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.btn-tip-women {
    background: linear-gradient(135deg, #c026d3 0%, #ec4899 100%);
    border: none;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 8px 24px -4px rgba(192, 38, 211, 0.4);
}

.btn-tip-women:hover {
    color: #fff;
    transform: translateY(-2px);
}

.tip-careers-women-banner {
    padding: 1.5rem 1.75rem;
    border-radius: 16px;
    background: var(--tip-bg-elevated);
    border: 1px dashed rgba(192, 38, 211, 0.35);
}

.tip-nav-women {
    color: #a21caf !important;
    font-weight: 600 !important;
}

.tip-nav-women-app {
    color: #e879f9 !important;
    font-weight: 600;
}

.tip-pricing-women {
    border-color: #c026d3;
    box-shadow: 0 0 0 1px rgba(192, 38, 211, 0.3), var(--tip-shadow);
}

.tip-pricing-badge-women {
    background: linear-gradient(135deg, #c026d3, #ec4899);
}

.tip-women-card {
    border: 1px solid rgba(192, 38, 211, 0.2) !important;
}

/* Corporate AI */
.tip-corporate-ai {
    background: var(--tip-bg-muted);
}

.tip-corporate-label {
    color: var(--tip-primary);
}

.tip-corporate-card {
    background: var(--tip-bg-elevated);
    border: 1px solid var(--tip-border);
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tip-corporate-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--tip-shadow);
}

.tip-corporate-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    background: linear-gradient(135deg, #6366f1, #2563eb);
    color: #fff;
    margin-bottom: 1rem;
}

.tip-corporate-cta-card {
    background: var(--tip-bg-elevated);
    border: 1px solid var(--tip-border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--tip-shadow);
}

.btn-tip-corporate {
    background: linear-gradient(135deg, #6366f1 0%, #2563eb 100%);
    border: none;
    color: #fff;
    font-weight: 600;
}

.btn-tip-corporate:hover {
    color: #fff;
    transform: translateY(-2px);
}

/* Section backgrounds */
.tip-about { background: var(--tip-bg-elevated); }
.tip-coaching { background: var(--tip-bg-muted); }
.tip-kit { background: var(--tip-bg-muted); }
.tip-pricing { background: var(--tip-bg-elevated); }

@media (max-width: 991.98px) {
    .tip-landing-main { padding-top: 70px; }
    .tip-section { padding: 3.5rem 0; }
    .tip-pricing-popular { transform: none; }
    .tip-float-card { display: none; }
    .tip-method-track {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .tip-method-track::before { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .tip-reveal { opacity: 1; transform: none; transition: none; }
    .tip-float-card { animation: none; }
}

/* Theme switch — keep Bootstrap utilities in sync with CSS variables */
body.tip-landing .text-muted {
    color: var(--tip-text-muted) !important;
}

body.tip-landing .tip-section:not(.tip-academy-section-dark):not(.tip-final-cta-has-img):not(.tip-landing-footer) .text-white:not(.btn):not(.badge):not(.tip-nav-cta) {
    color: var(--academy-heading, var(--tip-text)) !important;
}

body.tip-landing .accordion-button {
    color: var(--tip-text);
    background-color: var(--tip-bg-elevated);
}

body.tip-landing .accordion-button:not(.collapsed) {
    color: var(--tip-text);
    background-color: var(--tip-bg-muted);
}

body.tip-landing .accordion-body {
    color: var(--tip-text-muted);
    background-color: var(--tip-bg-elevated);
}
