/* Mobile Landing Page (index.php) Styles - Özel Mobil Tasarım */

@media (max-width: 768px) {

    /* Landing Özel Renkler */
    :root {
        --landing-primary: #6366f1;
        --landing-accent: #8b5cf6;
    }

    /* Navbar - Theme Support - Compact */
    .navbar {
        background: var(--mobile-bg) !important;
        border-bottom: 1px solid var(--mobile-border) !important;
        padding: 0.375rem 0 !important;
        min-height: 50px;
    }

    .navbar .container {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }

    .navbar-brand {
        font-size: 0.9375rem;
        padding: 0.25rem 0;
    }

    .navbar-toggler {
        padding: 0.25rem 0.5rem;
        font-size: 0.875rem;
    }

    /* Body padding for fixed navbar */
    body {
        padding-top: 0 !important;
    }

    /* Navbar height compensation */
    .navbar.fixed-top {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1030;
    }

    /* Light Theme - Navbar */
    :root:not([data-theme="dark"]) .navbar {
        background: #ffffff !important;
        border-bottom-color: #e2e8f0 !important;
    }

    :root:not([data-theme="dark"]) .navbar-brand {
        color: #6366f1 !important;
    }

    :root:not([data-theme="dark"]) .btn-ghost {
        background: #ffffff !important;
        border-color: #e2e8f0 !important;
        color: #1e293b !important;
    }

    :root:not([data-theme="dark"]) .btn-ghost:active {
        background: #f8fafc !important;
    }

    /* Dark Theme - Navbar */
    [data-theme="dark"] .navbar {
        background: #0b1220 !important;
        border-bottom-color: #1f2937 !important;
    }

    [data-theme="dark"] .navbar-brand {
        color: #818cf8 !important;
    }

    [data-theme="dark"] .btn-ghost {
        background: #0f172a !important;
        border-color: #1f2937 !important;
        color: #e2e8f0 !important;
    }

    [data-theme="dark"] .btn-ghost:active {
        background: #1e293b !important;
    }

    /* Hero Section - Minimalist - Compact */
    .hero-section {
        padding: 0.5rem 0 1.5rem;
        min-height: auto !important;
        background: var(--mobile-bg);
        margin-top: 0;
    }

    .hero-section .container {
        padding-top: 0;
    }

    .hero-section .row {
        min-height: auto !important;
        align-items: flex-start !important;
        padding-top: 0 !important;
        margin-top: 0;
    }

    .hero-section .row.pt-md-0 {
        padding-top: 0 !important;
    }

    .hero-content {
        text-align: center;
        padding: 0 0.5rem;
        margin-top: 0;
    }

    .hero-content .d-flex {
        justify-content: center;
    }

    .hero-badge {
        margin-bottom: 0.75rem;
        margin-top: 0;
    }

    /* Remove hero shapes on mobile to save space */
    .hero-shape {
        display: none;
    }

    /* Light Theme - Hero Section */
    :root:not([data-theme="dark"]) .hero-section {
        background: #ffffff !important;
    }

    /* Dark Theme - Hero Section */
    [data-theme="dark"] .hero-section {
        background: #0b1220 !important;
    }

    .hero-badge {
        font-size: 0.8125rem;
        padding: 0.6rem 1.1rem;
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1)) !important;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(99, 102, 241, 0.2) !important;
        color: #6366f1 !important;
        font-weight: 600;
        border-radius: 999px;
        box-shadow: 0 2px 8px rgba(99, 102, 241, 0.1);
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .hero-badge i {
        color: #6366f1 !important;
        font-size: 1rem;
    }

    /* Light Theme - Hero Badge */
    :root:not([data-theme="dark"]) .hero-badge {
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1)) !important;
        border-color: rgba(99, 102, 241, 0.2) !important;
        color: #6366f1 !important;
    }

    :root:not([data-theme="dark"]) .hero-badge:hover {
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15)) !important;
        border-color: rgba(99, 102, 241, 0.3) !important;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(99, 102, 241, 0.25);
    }

    /* Dark Theme - Hero Badge */
    [data-theme="dark"] .hero-badge {
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15)) !important;
        border-color: rgba(129, 140, 248, 0.3) !important;
        color: #a78bfa !important;
    }

    [data-theme="dark"] .hero-badge i {
        color: #a78bfa !important;
    }

    [data-theme="dark"] .hero-badge:hover {
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2)) !important;
        border-color: rgba(129, 140, 248, 0.4) !important;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(129, 140, 248, 0.3);
    }

    .hero-title {
        font-size: 1.75rem !important;
        line-height: 1.3;
        color: var(--mobile-text);
        font-weight: 700;
        margin-top: 0;
        margin-bottom: 0.75rem;
    }

    .hero-title .gradient-text {
        display: block;
        margin-top: 0.25rem;
    }

    /* Light Theme - Hero Title */
    :root:not([data-theme="dark"]) .hero-title {
        color: #1e293b !important;
    }

    /* Dark Theme - Hero Title */
    [data-theme="dark"] .hero-title {
        color: #f1f5f9 !important;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
        color: var(--mobile-text-muted);
        line-height: 1.6;
        margin-top: 0;
        margin-bottom: 1.25rem;
        padding: 0 0.5rem;
    }

    /* Light Theme - Hero Subtitle */
    :root:not([data-theme="dark"]) .hero-subtitle {
        color: #64748b !important;
    }

    /* Dark Theme - Hero Subtitle */
    [data-theme="dark"] .hero-subtitle {
        color: #94a3b8 !important;
    }

    .chips {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .chip {
        font-size: 0.8125rem;
        padding: 0.65rem 1rem;
        background: var(--mobile-card-bg) !important;
        border: 1.5px solid var(--mobile-border) !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
        border-radius: 12px;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-weight: 600;
    }

    .chip i {
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    /* Light Theme - Chips */
    :root:not([data-theme="dark"]) .chip {
        background: #ffffff !important;
        border-color: #e2e8f0 !important;
        color: #1e293b !important;
    }

    :root:not([data-theme="dark"]) .chip:active {
        background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
        border-color: #6366f1 !important;
        color: white !important;
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 8px 24px rgba(99, 102, 241, 0.25) !important;
    }

    :root:not([data-theme="dark"]) .chip:active i {
        color: white !important;
        transform: scale(1.1);
    }

    /* Dark Theme - Chips */
    [data-theme="dark"] .chip {
        background: #1e293b !important;
        border-color: #334155 !important;
        color: #f1f5f9 !important;
    }

    [data-theme="dark"] .chip:active {
        background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
        border-color: #6366f1 !important;
        color: white !important;
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3) !important;
    }

    [data-theme="dark"] .chip:active i {
        color: white !important;
        transform: scale(1.1);
    }

    /* Features - Mobilde tek sütun, tablet'te 2 sütun */
    .row.g-3>.col-lg-4.col-md-6.col-6.col-12,
    .row.g-4>.col-lg-4.col-md-6.col-6.col-12 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding-left: calc(var(--mobile-spacing) * 0.5) !important;
        padding-right: calc(var(--mobile-spacing) * 0.5) !important;
    }

    @media (min-width: 576px) and (max-width: 768px) {

        .row.g-3>.col-lg-4.col-md-6.col-6.col-12,
        .row.g-4>.col-lg-4.col-md-6.col-6.col-12 {
            flex: 0 0 50% !important;
            max-width: 50% !important;
        }
    }

    /* Features - Minimalist */
    .feature-card {
        padding: var(--mobile-spacing);
        margin-bottom: var(--mobile-spacing);
        background: var(--mobile-card-bg) !important;
        border: 1px solid var(--mobile-border) !important;
        box-shadow: none !important;
        border-radius: var(--mobile-radius) !important;
        transition: all 0.2s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    /* Light Theme - Feature Cards */
    :root:not([data-theme="dark"]) .feature-card {
        background: #ffffff !important;
        border-color: #e2e8f0 !important;
        color: #1e293b !important;
    }

    :root:not([data-theme="dark"]) .feature-card h5 {
        color: #1e293b !important;
    }

    :root:not([data-theme="dark"]) .feature-card p.text-muted {
        color: #64748b !important;
    }

    :root:not([data-theme="dark"]) .feature-card:active {
        background: #f8fafc !important;
    }

    /* Dark Theme - Feature Cards */
    [data-theme="dark"] .feature-card {
        background: #1e293b !important;
        border-color: #334155 !important;
        color: #f1f5f9 !important;
    }

    [data-theme="dark"] .feature-card h5 {
        color: #f1f5f9 !important;
    }

    [data-theme="dark"] .feature-card p.text-muted {
        color: #94a3b8 !important;
    }

    [data-theme="dark"] .feature-card:active {
        background: #334155 !important;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
        background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
        border: none !important;
        border-radius: 14px;
        color: white !important;
        margin: 0 auto 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    }

    .feature-icon i {
        color: white !important;
        font-size: 1.5rem !important;
    }

    .feature-icon.success {
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    }

    .feature-icon.info {
        background: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
    }

    .feature-icon.warning {
        background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    }

    .feature-icon.danger {
        background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    }

    .feature-icon.primary {
        background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    }

    .feature-card h5 {
        font-size: 0.9375rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: var(--mobile-text);
    }

    .feature-card p {
        font-size: 0.8125rem;
        margin: 0;
        color: var(--mobile-text-muted);
    }

    /* Stats */
    .stats-section {
        padding: 2rem 0;
        background: var(--mobile-bg) !important;
    }

    /* Light Theme - Stats Section */
    :root:not([data-theme="dark"]) .stats-section {
        background: #ffffff !important;
        border-color: #e2e8f0 !important;
    }

    /* Dark Theme - Stats Section */
    [data-theme="dark"] .stats-section {
        background: #0f172a !important;
        border-color: #1e293b !important;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
        color: var(--mobile-text);
    }

    /* Light Theme - Stat Number */
    :root:not([data-theme="dark"]) .stat-number {
        color: #6366f1 !important;
    }

    /* Dark Theme - Stat Number */
    [data-theme="dark"] .stat-number {
        color: #818cf8 !important;
    }

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

    /* Light Theme - Stat Label */
    :root:not([data-theme="dark"]) .stat-label {
        color: #64748b !important;
    }

    /* Dark Theme - Stat Label */
    [data-theme="dark"] .stat-label {
        color: #94a3b8 !important;
    }

    /* Pricing - Minimalist */
    .pricing-card {
        padding: var(--mobile-spacing);
        margin-bottom: var(--mobile-spacing);
        background: var(--mobile-card-bg) !important;
        border: 1px solid var(--mobile-border) !important;
        box-shadow: none !important;
        border-radius: var(--mobile-radius) !important;
        transition: all 0.2s ease;
    }

    /* Light Theme - Pricing Cards */
    :root:not([data-theme="dark"]) .pricing-card {
        background: #ffffff !important;
        border-color: #e2e8f0 !important;
        color: #1e293b !important;
    }

    :root:not([data-theme="dark"]) .pricing-card .pricing-header h5 {
        color: #1e293b !important;
    }

    :root:not([data-theme="dark"]) .pricing-card .pricing-features li {
        color: #1e293b !important;
        border-color: #e2e8f0 !important;
    }

    :root:not([data-theme="dark"]) .pricing-card:active {
        background: #f8fafc !important;
    }

    /* Dark Theme - Pricing Cards */
    [data-theme="dark"] .pricing-card {
        background: #1e293b !important;
        border-color: #334155 !important;
        color: #f1f5f9 !important;
    }

    [data-theme="dark"] .pricing-card .pricing-header h5 {
        color: #f1f5f9 !important;
    }

    [data-theme="dark"] .pricing-card .pricing-features li {
        color: #f1f5f9 !important;
        border-color: #334155 !important;
    }

    [data-theme="dark"] .pricing-card:active {
        background: #334155 !important;
    }

    .pricing-card.featured {
        border-color: var(--landing-primary) !important;
    }

    .pricing-price {
        font-size: 1.75rem;
        color: var(--mobile-text);
        font-weight: 700;
    }

    .pricing-header h5 {
        font-size: 1.125rem;
        font-weight: 600;
        color: var(--mobile-text);
    }

    /* Steps - Mobilde tek sütun */
    .row.g-3>.col-lg-4.col-md-6.col-12,
    .row.g-4>.col-lg-4.col-md-6.col-12 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding-left: calc(var(--mobile-spacing) * 0.5) !important;
        padding-right: calc(var(--mobile-spacing) * 0.5) !important;
    }

    /* Steps */
    .step-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
        background: var(--mobile-card-bg) !important;
        border: 1px solid var(--mobile-border) !important;
        border-radius: var(--mobile-radius) !important;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Light Theme - Step Cards */
    :root:not([data-theme="dark"]) .step-card {
        background: #ffffff !important;
        border-color: #e2e8f0 !important;
        color: #1e293b !important;
    }

    :root:not([data-theme="dark"]) .step-card h5 {
        color: #1e293b !important;
    }

    :root:not([data-theme="dark"]) .step-card p.text-muted {
        color: #64748b !important;
    }

    /* Dark Theme - Step Cards */
    [data-theme="dark"] .step-card {
        background: #1e293b !important;
        border-color: #334155 !important;
        color: #f1f5f9 !important;
    }

    [data-theme="dark"] .step-card h5 {
        color: #f1f5f9 !important;
    }

    [data-theme="dark"] .step-card p.text-muted {
        color: #94a3b8 !important;
    }

    .step-number {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
        box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3) !important;
    }

    /* CTA */
    .cta-section {
        padding: 3rem 0;
        background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) !important;
        color: white !important;
    }

    .cta-section h2 {
        font-size: 1.75rem;
        color: white !important;
    }

    .cta-section .lead {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.9) !important;
    }

    .cta-section .btn-ghost {
        background: rgba(255, 255, 255, 0.15) !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
        color: white !important;
    }

    .cta-section .btn-ghost:active {
        background: rgba(255, 255, 255, 0.25) !important;
    }

    /* Footer - Professional Design */
    .footer {
        padding: 3rem 0 1.5rem;
        background: linear-gradient(180deg, var(--mobile-card-bg) 0%, var(--mobile-bg) 100%) !important;
        border-top: 1px solid var(--mobile-border) !important;
        position: relative;
    }

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, #6366f1, transparent);
        opacity: 0.3;
    }

    /* Light Theme - Footer */
    :root:not([data-theme="dark"]) .footer {
        background: #f8fafc !important;
        border-top-color: #e2e8f0 !important;
        color: #64748b !important;
    }

    :root:not([data-theme="dark"]) .footer h5,
    :root:not([data-theme="dark"]) .footer h6 {
        color: #1e293b !important;
        font-weight: 700 !important;
        font-size: 1.1rem !important;
    }

    :root:not([data-theme="dark"]) .footer h5 i {
        color: #6366f1 !important;
    }

    :root:not([data-theme="dark"]) .footer a {
        color: #64748b !important;
        font-size: 0.95rem !important;
        transition: all 0.3s ease !important;
    }

    :root:not([data-theme="dark"]) .footer a:hover {
        color: #6366f1 !important;
        transform: translateX(4px) !important;
        font-weight: 500 !important;
    }

    /* Dark Theme - Footer */
    [data-theme="dark"] .footer {
        background: #0f172a !important;
        border-top-color: #1e293b !important;
        color: #cbd5e1 !important;
    }

    [data-theme="dark"] .footer h5,
    [data-theme="dark"] .footer h6 {
        color: #ffffff !important;
        font-weight: 700 !important;
        font-size: 1.1rem !important;
    }

    [data-theme="dark"] .footer h5 i {
        color: #818cf8 !important;
    }

    [data-theme="dark"] .footer a {
        color: #94a3b8 !important;
        font-size: 0.95rem !important;
        transition: all 0.3s ease !important;
    }

    [data-theme="dark"] .footer a:hover {
        color: #a78bfa !important;
        transform: translateX(4px) !important;
        font-weight: 500 !important;
    }

    .footer h5,
    .footer h6 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .footer ul li {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }

    /* Section Backgrounds */
    section.bg-light {
        background: var(--mobile-bg) !important;
    }

    /* Light Theme - bg-light */
    :root:not([data-theme="dark"]) section.bg-light {
        background: #f8fafc !important;
    }

    /* Dark Theme - bg-light */
    [data-theme="dark"] section.bg-light {
        background: #0f172a !important;
    }

    /* Accordion - Theme Support */
    :root:not([data-theme="dark"]) .accordion-item {
        background: #ffffff !important;
        border-color: #e2e8f0 !important;
    }

    :root:not([data-theme="dark"]) .accordion-button {
        background: #ffffff !important;
        color: #1e293b !important;
    }

    :root:not([data-theme="dark"]) .accordion-body {
        background: #ffffff !important;
        color: #1e293b !important;
    }

    [data-theme="dark"] .accordion-item {
        background: #1e293b !important;
        border-color: #334155 !important;
    }

    [data-theme="dark"] .accordion-button {
        background: #1e293b !important;
        color: #f1f5f9 !important;
    }

    [data-theme="dark"] .accordion-body {
        background: #1e293b !important;
        color: #f1f5f9 !important;
    }

    /* Section Titles - Theme Support */
    section h2,
    section .h1 {
        color: var(--mobile-text);
    }

    /* Light Theme - Section Titles */
    :root:not([data-theme="dark"]) section h2,
    :root:not([data-theme="dark"]) section .h1 {
        color: #1e293b !important;
    }

    /* Dark Theme - Section Titles */
    [data-theme="dark"] section h2,
    [data-theme="dark"] section .h1 {
        color: #f1f5f9 !important;
    }

    section .lead {
        color: var(--mobile-text-muted);
    }

    /* Light Theme - Lead Text */
    :root:not([data-theme="dark"]) section .lead {
        color: #64748b !important;
    }

    /* Dark Theme - Lead Text */
    [data-theme="dark"] section .lead {
        color: #94a3b8 !important;
    }

    /* Preview Card - Theme Support */
    .preview-card {
        background: var(--mobile-card-bg) !important;
        border-color: var(--mobile-border) !important;
    }

    /* Light Theme - Preview Card */
    :root:not([data-theme="dark"]) .preview-card {
        background: #ffffff !important;
        border-color: #e2e8f0 !important;
    }

    :root:not([data-theme="dark"]) .preview-card .text-muted {
        color: #64748b !important;
    }

    /* Dark Theme - Preview Card */
    [data-theme="dark"] .preview-card {
        background: #1e293b !important;
        border-color: #334155 !important;
    }

    [data-theme="dark"] .preview-card .text-muted {
        color: #94a3b8 !important;
    }

    /* Buttons - Theme Support */
    .btn-primary {
        background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) !important;
        color: white !important;
        min-width: 140px;
    }

    .btn-primary:active {
        opacity: 0.9;
        transform: scale(0.98);
    }

    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }

    .btn-sm {
        padding: 0.5rem 0.875rem;
        font-size: 0.8125rem;
    }

    /* Navbar buttons on mobile */
    .navbar .btn {
        width: auto;
        margin-bottom: 0;
        min-width: auto;
    }

    .navbar .d-flex {
        flex-wrap: nowrap;
        gap: 0.5rem;
    }

    /* Hero buttons */
    .hero-content .btn-lg {
        flex: 1 1 auto;
        min-width: 140px;
        max-width: 200px;
    }

    /* CTA buttons */
    .cta-section .btn-lg {
        flex: 1 1 auto;
        min-width: 140px;
        max-width: 220px;
    }

    /* Pricing cards - full width on mobile */
    .pricing-card {
        width: 100%;
        margin-bottom: 1.5rem;
    }

    /* Stats - 2 columns on mobile */
    .stats-section .row>div {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }

    /* Footer - better spacing */
    .footer .row>div {
        margin-bottom: 1.5rem;
    }

    .footer h5,
    .footer h6 {
        font-size: 0.9375rem;
        margin-bottom: 0.75rem;
    }

    .footer ul {
        margin-bottom: 0;
    }

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

    /* Preview card - hide on mobile */
    .preview-card {
        display: none !important;
    }

    /* Accordion - better mobile spacing */
    .accordion-item {
        margin-bottom: 0.5rem;
    }

    .accordion-button {
        padding: 0.875rem 1rem;
        font-size: 0.9375rem;
    }

    .accordion-body {
        padding: 1rem;
        font-size: 0.875rem;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 0.5rem 0 1.25rem;
    }

    .hero-content {
        margin-top: 0;
        padding: 0 0.25rem;
    }

    .hero-badge {
        margin-bottom: 0.625rem;
    }

    .hero-title {
        margin-bottom: 0.625rem;
    }

    .hero-subtitle {
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 1.5rem !important;
        line-height: 1.25;
    }

    .hero-subtitle {
        font-size: 0.875rem;
        padding: 0;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 0.875rem;
    }

    .feature-card {
        padding: 1rem;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 1.125rem;
    }

    .feature-card h5 {
        font-size: 0.875rem;
    }

    .feature-card p {
        font-size: 0.75rem;
    }

    .pricing-card {
        padding: 1rem;
    }

    .pricing-price {
        font-size: 1.75rem;
    }

    .pricing-header h5 {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .step-card h5 {
        font-size: 0.875rem;
    }

    .step-card p {
        font-size: 0.75rem;
    }

    .cta-section {
        padding: 2rem 0;
    }

    .cta-section h2 {
        font-size: 1.375rem;
    }

    .cta-section .lead {
        font-size: 0.875rem;
    }

    .chips {
        gap: 0.375rem;
    }

    .chip {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }

    .btn-lg {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer h5,
    .footer h6 {
        font-size: 0.875rem;
    }

    .footer ul li {
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 2rem 0 3rem;
        background: radial-gradient(circle at top center, rgba(99, 102, 241, 0.15), transparent 70%);
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.5rem;
        background: rgba(99, 102, 241, 0.1);
        border: 1px solid rgba(99, 102, 241, 0.2);
        backdrop-filter: blur(10px);
        border-radius: 100px;
        color: #818cf8;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .hero-title {
        font-size: 2rem !important;
        line-height: 1.2;
        letter-spacing: -0.01em;
        margin-bottom: 1rem;
        font-weight: 800;
        color: var(--mobile-text);
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
        color: var(--mobile-text-muted);
        opacity: 0.9;
    }

    .hero-content .d-flex {
        display: flex;
        flex-direction: row;
        /* Side by side */
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .hero-content .btn-lg {
        flex: 1;
        /* Equal width */
        min-height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.95rem;
        font-weight: 600;
        border-radius: 14px;
        margin: 0;
        padding: 0 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        white-space: nowrap;
    }

    .hero-content .btn-primary {
        background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
        border: none;
        box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3);
    }

    .hero-content .btn-ghost {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
    }

    /* Professional Chips Grid */
    .chips {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        margin-top: 1rem;
    }

    .chip {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.75rem;
        margin: 0;
        background: rgba(30, 41, 59, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 14px;
        font-size: 0.8rem;
        color: #e2e8f0;
        font-weight: 500;
        text-align: center;
        width: 100%;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

    .chip i {
        font-size: 1rem;
        color: #818cf8;
    }

    /* Fix other sections */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    section {
        padding: 3rem 0 !important;
    }
}