/* ══════════════════════════════════════════════════════════════
   landing.css — Amerilink Public & Auth Pages
   Grey-based dark mode · Stripe-inspired · Modern & Sleek
   Brand: #3870f9 (Blue) · #fe0403 (Red) · White
   ══════════════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
    --landing-bg: #09090b;
    --landing-surface: #131316;
    --landing-surface-hover: #1a1a1f;
    --landing-border: rgba(255, 255, 255, 0.06);
    --landing-text: #d4d4d8;
    --landing-text-muted: #71717a;
    --landing-heading: #fafafa;
    --landing-primary: #3870f9;
    --landing-primary-hover: #2d5fd6;
    --landing-red: #fe0403;
    --landing-gradient: linear-gradient(135deg, #3870f9 0%, #6b9afc 100%);
}

/* ── Reset / Base ── */
.landing-page {
    background-color: var(--landing-bg);
    color: var(--landing-text);
}

.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page h4,
.landing-page h5 {
    color: var(--landing-heading);
}

/* ── Public Navbar ── */
.landing-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    padding: 1rem 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    background-color: transparent;
}

.landing-navbar.scrolled {
    background-color: rgba(9, 9, 11, 0.92);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}

.landing-navbar .navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
}

.landing-navbar .nav-brand img {
    height: 50px;
}

.landing-navbar .nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.landing-navbar .nav-links a {
    color: #a1a1aa;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s, background-color 0.2s;
}

.landing-navbar .nav-links a:hover {
    color: #fafafa;
    background-color: rgba(255, 255, 255, 0.04);
}

.landing-navbar .nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.landing-navbar .nav-actions .btn-ghost {
    color: #a1a1aa;
    background: transparent;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s, background-color 0.2s;
}

.landing-navbar .nav-actions .btn-ghost:hover {
    color: #fafafa;
    background-color: rgba(255, 255, 255, 0.04);
}

.landing-navbar .nav-actions .btn-primary {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    background-color: #3870f9;
    border-color: #3870f9;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.landing-navbar .nav-actions .btn-primary:hover {
    background-color: #2d5fd6;
    border-color: #2d5fd6;
    box-shadow: 0 2px 12px rgba(56, 112, 249, 0.3);
}

/* Mobile nav toggle */
.landing-navbar .nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #a1a1aa;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
}

@media (max-width: 768px) {
    .landing-navbar .nav-links {
        display: none;
    }
    .landing-navbar .nav-toggle {
        display: block;
    }
    .landing-navbar .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(9, 9, 11, 0.98);
        backdrop-filter: blur(16px);
        padding: 1rem;
        border-bottom: 1px solid var(--landing-border);
    }
}

/* ── Hero Section ── */
.hero-section {
    padding: 10rem 1.5rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(56, 112, 249, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section h1 {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    position: relative;
    letter-spacing: -0.03em;
    color: #fafafa;
}

.hero-section h1 .text-gradient {
    background: var(--landing-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Red accent gradient option */
.hero-section h1 .text-gradient-red {
    background: linear-gradient(135deg, #fe0403 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section .hero-subtitle {
    font-size: 1.25rem;
    color: #71717a;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    font-weight: 400;
}

.hero-section .hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-section .hero-actions .btn {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
}

.hero-section .hero-actions .btn-primary {
    background-color: #3870f9;
    border-color: #3870f9;
}

.hero-section .hero-actions .btn-primary:hover {
    background-color: #2d5fd6;
    box-shadow: 0 4px 20px rgba(56, 112, 249, 0.3);
}

.hero-section .hero-actions .btn-outline-light {
    border-color: #27272a;
    color: #a1a1aa;
    background-color: transparent;
}

.hero-section .hero-actions .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: #3f3f46;
    color: #fafafa;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 8rem 1.5rem 4rem;
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section .hero-subtitle {
        font-size: 1.05rem;
    }
}

/* ── Trusted By Strip ── */
.trusted-strip {
    padding: 3rem 1.5rem;
    text-align: center;
    border-top: 1px solid var(--landing-border);
    border-bottom: 1px solid var(--landing-border);
}

.trusted-strip p {
    text-transform: uppercase;
    font-size: 0.6875rem;
    letter-spacing: 3px;
    color: #52525b;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.trusted-strip .logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.3;
}

.trusted-strip .logos span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #52525b;
}

/* ── Section Common ── */
.landing-section {
    padding: 5rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.landing-section .section-label {
    text-transform: uppercase;
    font-size: 0.6875rem;
    letter-spacing: 3px;
    color: #3870f9;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.landing-section .section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: #fafafa;
}

.landing-section .section-subtitle {
    font-size: 1.1rem;
    color: #71717a;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.text-center .section-subtitle {
    text-align: center;
}

/* ── Feature Cards ── */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 992px) {
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .feature-grid { grid-template-columns: 1fr; }
}

.feature-card {
    background-color: var(--landing-surface);
    border: 1px solid var(--landing-border);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    border-color: rgba(56, 112, 249, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.feature-card .feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(56, 112, 249, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: #3870f9;
}

.feature-card .feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fafafa;
}

.feature-card p {
    color: #71717a;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* ── How It Works ── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .steps-grid { grid-template-columns: 1fr; }
}

.step-item .step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--landing-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 16px rgba(56, 112, 249, 0.2);
}

.step-item h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fafafa;
}

.step-item p {
    color: #71717a;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ── Stats Bar ── */
.stats-bar {
    padding: 4rem 1.5rem;
    background-color: var(--landing-surface);
    border-top: 1px solid var(--landing-border);
    border-bottom: 1px solid var(--landing-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

.stat-item .stat-value {
    font-size: 2.75rem;
    font-weight: 800;
    color: #fafafa;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-item .stat-value .text-gradient {
    background: var(--landing-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item .stat-label {
    font-size: 0.75rem;
    color: #52525b;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* ── Testimonial ── */
.testimonial-section {
    padding: 5rem 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-section blockquote {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.8;
    color: #d4d4d8;
    margin: 0 0 1.5rem;
    border: none;
    padding: 0;
}

.testimonial-section .testimonial-author {
    font-weight: 600;
    color: #fafafa;
}

.testimonial-section .testimonial-role {
    font-size: 0.85rem;
    color: #52525b;
}

/* ── CTA Section ── */
.cta-section {
    padding: 5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(56, 112, 249, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    letter-spacing: -0.02em;
    color: #fafafa;
}

.cta-section p {
    color: #71717a;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: relative;
}

.cta-section .btn {
    position: relative;
    padding: 0.75rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
}

.cta-section .btn-primary {
    background-color: #3870f9;
    border-color: #3870f9;
}

.cta-section .btn-primary:hover {
    box-shadow: 0 4px 20px rgba(56, 112, 249, 0.3);
}

/* ── Pricing Cards ── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
}

.pricing-card {
    background-color: var(--landing-surface);
    border: 1px solid var(--landing-border);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured {
    border-color: #3870f9;
    position: relative;
    box-shadow: 0 0 32px rgba(56, 112, 249, 0.08);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--landing-gradient);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.pricing-card .pricing-tier {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #52525b;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.pricing-card .pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #fafafa;
    line-height: 1;
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

.pricing-card .pricing-amount span {
    font-size: 1rem;
    font-weight: 400;
    color: #52525b;
}

.pricing-card .pricing-desc {
    font-size: 0.9rem;
    color: #71717a;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--landing-border);
}

.pricing-card .pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    flex-grow: 1;
}

.pricing-card .pricing-features li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: #d4d4d8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-card .pricing-features li svg {
    width: 18px;
    height: 18px;
    color: #22c55e;
    flex-shrink: 0;
}

.pricing-card .pricing-features li.disabled {
    color: #3f3f46;
    opacity: 0.5;
}

.pricing-card .pricing-features li.disabled svg {
    color: #3f3f46;
}

/* ── Content Page Styles (About, Solutions, Contact) ── */
.content-page {
    padding-top: 6rem;
}

.content-hero {
    padding: 4rem 1.5rem 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.content-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.content-hero p {
    font-size: 1.15rem;
    color: #71717a;
    line-height: 1.7;
}

.content-section {
    padding: 3rem 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.content-section p {
    color: #d4d4d8;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .values-grid { grid-template-columns: 1fr; }
}

.value-card {
    background-color: var(--landing-surface);
    border: 1px solid var(--landing-border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: border-color 0.2s ease;
}

.value-card:hover {
    border-color: rgba(56, 112, 249, 0.15);
}

.value-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fafafa;
}

.value-card p {
    font-size: 0.9rem;
    color: #71717a;
    margin: 0;
}

/* ── Contact Form ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
}

.contact-form .form-control,
.contact-form .form-select {
    background-color: var(--landing-surface);
    border-color: var(--landing-border);
    color: #e4e4e7;
    border-radius: 8px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #3870f9;
    box-shadow: 0 0 0 3px rgba(56, 112, 249, 0.12);
}

.contact-form .form-label {
    color: #a1a1aa;
    font-weight: 500;
    font-size: 0.875rem;
}

.contact-info-card {
    background-color: var(--landing-surface);
    border: 1px solid var(--landing-border);
    border-radius: 12px;
    padding: 2rem;
}

.contact-info-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fafafa;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-item svg {
    width: 20px;
    height: 20px;
    color: #3870f9;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-item .info-label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #52525b;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-info-item .info-value {
    color: #d4d4d8;
    font-size: 0.95rem;
}

/* ── Landing Footer ── */
.landing-footer {
    border-top: 1px solid var(--landing-border);
    padding: 3rem 1.5rem;
    margin-top: 2rem;
    background-color: var(--landing-bg);
}

.landing-footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 768px) {
    .landing-footer .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .landing-footer .footer-container {
        grid-template-columns: 1fr;
    }
}

.landing-footer .footer-brand p {
    color: #52525b;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-top: 1rem;
}

.landing-footer .footer-brand img {
    height: 32px;
}

.landing-footer h5 {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #52525b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.landing-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.landing-footer ul li {
    margin-bottom: 0.5rem;
}

.landing-footer ul li a {
    color: #71717a;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.landing-footer ul li a:hover {
    color: #fafafa;
}

.landing-footer .footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--landing-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
    color: #3f3f46;
}

@media (max-width: 576px) {
    .landing-footer .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* ── Auth Layout (Illustration Pattern) ── */
.page-center .container-tight .card {
    border-radius: 12px;
    background-color: #131316;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.page-center .container-tight .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fafafa;
}

.auth-footer-text {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #71717a;
}

.auth-link {
    text-decoration: none;
    font-size: 0.9rem;
    color: #3870f9;
}

.auth-link:hover {
    text-decoration: underline;
    color: #6b9afc;
}

/* ── Hero Image / Dashboard Preview ── */
.hero-image-wrapper {
    max-width: 900px;
    margin: 4rem auto 0;
    position: relative;
    padding: 0 1.5rem;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--landing-border);
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.5);
}

/* Glow behind the hero image */
.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(56, 112, 249, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* ── Section Image (text + image side-by-side) ── */
.section-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.section-with-image.reversed {
    direction: rtl;
}

.section-with-image.reversed > * {
    direction: ltr;
}

.section-with-image .section-text .section-label {
    text-transform: uppercase;
    font-size: 0.6875rem;
    letter-spacing: 3px;
    color: #3870f9;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.section-with-image .section-text h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    color: #fafafa;
}

.section-with-image .section-text p {
    color: #71717a;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.section-with-image .section-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--landing-border);
}

@media (max-width: 768px) {
    .section-with-image,
    .section-with-image.reversed {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    .section-with-image .section-image {
        order: -1;
    }
}

/* ── Content Page Image ── */
.content-image {
    max-width: 1000px;
    margin: 0 auto 2rem;
    padding: 0 1.5rem;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--landing-border);
}

/* ── Stock Photo Placeholder ── */
.stock-photo {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

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

/* ── Solution Role Cards ── */
.role-section {
    padding: 3rem 0;
}

.role-section + .role-section {
    border-top: 1px solid var(--landing-border);
}

.role-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.role-header .role-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(56, 112, 249, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3870f9;
}

.role-header .role-icon svg {
    width: 24px;
    height: 24px;
}

.role-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #fafafa;
}

.role-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (max-width: 768px) {
    .role-features { grid-template-columns: 1fr; }
}

.role-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background-color: var(--landing-surface);
    border: 1px solid var(--landing-border);
    border-radius: 10px;
    transition: border-color 0.2s ease;
}

.role-feature-item:hover {
    border-color: rgba(56, 112, 249, 0.15);
}

.role-feature-item svg {
    width: 20px;
    height: 20px;
    color: #22c55e;
    flex-shrink: 0;
    margin-top: 2px;
}

.role-feature-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #fafafa;
}

.role-feature-item p {
    font-size: 0.85rem;
    color: #71717a;
    margin: 0;
    line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════════
   Landing Page Transitions & Animations
   ══════════════════════════════════════════════════════════════ */

/* ── Navbar: smooth background on scroll ── */
.landing-navbar {
    transition: background-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

/* ── Hero: stagger fade-in ── */
.hero-section h1 {
    animation: heroFadeUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero-section .hero-subtitle {
    animation: heroFadeUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
}

.hero-section .hero-actions {
    animation: heroFadeUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.hero-image-wrapper {
    animation: heroFadeUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Cards & interactive elements: smooth hover ── */
.feature-card {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s ease,
                box-shadow 0.3s ease;
}

.pricing-card {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s ease,
                box-shadow 0.3s ease;
}

.value-card {
    transition: border-color 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover {
    transform: translateY(-2px);
}

.role-feature-item {
    transition: border-color 0.3s ease,
                background-color 0.3s ease,
                transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.role-feature-item:hover {
    transform: translateY(-1px);
    background-color: rgba(56, 112, 249, 0.02);
}

/* ── Feature icon: gentle bob on card hover ── */
.feature-card:hover .feature-icon {
    transform: translateY(-2px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card .feature-icon {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Step numbers: pulse glow ── */
.step-item .step-number {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.step-item:hover .step-number {
    box-shadow: 0 6px 24px rgba(56, 112, 249, 0.3);
    transform: scale(1.05);
}

/* ── Stat values: count-up feel ── */
.stat-item .stat-value {
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-value {
    transform: scale(1.03);
}

/* ── Buttons: smooth interactions ── */
.landing-page .btn {
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-page .btn:active {
    transform: scale(0.97);
    transition-duration: 0.1s;
}

.landing-page .btn-primary:hover {
    transform: translateY(-1px);
}

/* ── Nav links: smooth underline hint ── */
.landing-navbar .nav-links a {
    position: relative;
    transition: color 0.25s ease, background-color 0.25s ease;
}

/* ── Footer links ── */
.landing-footer ul li a {
    transition: color 0.25s ease;
}

/* ── Contact form fields ── */
.contact-form .form-control,
.contact-form .form-select {
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

/* ── Auth card: entrance ── */
.page-center .container-tight {
    animation: heroFadeUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* ── Content pages: section fade-in ── */
.content-hero {
    animation: heroFadeUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* ── Respect reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
