:root {
    --primary: #ff6600;
    --primary-rgb: 255, 102, 0;
    --primary-dark: #e65c00;
    --secondary: #ffffff;
    --dark: #1f1f1f;
    --muted: #6c757d;
    --light: #f8f9fa;
}

::selection {
    background: var(--primary);
    color: #fff;
}

::-moz-selection {
    background: var(--primary);
    color: #fff;
}

/* Global Bootstrap Overrides */
.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
}

.btn-outline-primary {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-outline-primary:hover {
    background-color: var(--primary) !important;
    color: #ffffff !important;
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Expo Arabic', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: var(--dark);
    line-height: 1.8;
    letter-spacing: 0;
}

.landing-page {
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Navbar */
.navbar {
    background-color: transparent;
    border-bottom: none;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: none;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: none;
    box-shadow: none;
}

.navbar .nav-link {
    color: var(--dark);
    font-weight: 600;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: none;
}

.navbar .nav-link:hover {
    color: var(--primary);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 102, 0, 0.2);
    background: #ffffff;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    flex-direction: column;
    cursor: pointer;
    transition: none;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 999px;
    transition: none;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.nav-menu.is-open {
    display: flex;
}

@media (max-width: 991px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 1rem;
        left: 1rem;
        flex-direction: column;
        align-items: stretch;
        background: #ffffff;
        padding: 1rem;
        border-radius: 16px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
        gap: 0.75rem;
    }

    .nav-menu .btn,
    .nav-menu .nav-link {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
    }

    .navbar-brand {
        font-size: 1.1rem;
    }

    .navbar-brand i {
        font-size: 0.9rem;
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.75rem;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .navbar-brand {
        font-size: 1rem;
    }

    .navbar-brand i {
        font-size: 0.8rem;
    }

    .nav-link {
        font-size: 0.8rem;
        padding: 0.3rem 0.5rem;
    }

    .btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: none;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #ffffff;
    transform: none;
}

.btn-outline-orange {
    border: 1px solid var(--primary);
    color: var(--primary);
    background-color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: none;
}

.btn-outline-orange:hover {
    background-color: var(--primary);
    color: #ffffff;
}

/* Section Spacing */
.landing-hero,
.hero-pattern-divider,
.landing-features,
.landing-dashboard,
.landing-journey,
.landing-pricing,
.landing-faq,
.landing-contact {
    padding: 10rem 0;
}

@media (max-width: 768px) {

    .landing-hero,
    .hero-pattern-divider,
    .landing-features,
    .landing-dashboard,
    .landing-journey,
    .landing-pricing,
    .landing-faq,
    .landing-contact {
        padding: 6rem 0;
    }
}

/* Mobile Responsive Improvements */
@media (max-width: 768px) {
    .landing-page {
        padding-top: 80px;
    }

    .navbar .d-flex.justify-content-between.align-items-center.w-100 {
        flex-direction: column;
        align-items: stretch !important;
        gap: 0.75rem;
    }

    .navbar .d-flex.gap-3.align-items-center {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.6rem !important;
    }

    .navbar .btn,
    .navbar .nav-link {
        width: 100%;
        text-align: center;
    }

    .container {
        padding: 0 1rem;
    }

    .section-heading h2 {
        font-size: 1.8rem !important;
    }

    .section-heading p {
        font-size: 1rem !important;
    }

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

    .btn-lg {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-number {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }

    .feature-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .pricing-card {
        padding: 1.5rem;
        min-height: auto;
    }

    .pricing-toggle {
        width: 100%;
        justify-content: center;
        flex-wrap: nowrap;
        /* Fix: Prevent wrapping */
        display: flex;
    }

    .pricing-toggle .toggle-btn {
        flex: 1;
        /* Fix: Allow even distribution */
        text-align: center;
    }

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

    .pricing-features li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }

    .faq-accordion {
        margin: 2rem auto 0;
    }

    .faq-accordion-header {
        padding: 1.25rem;
    }

    .faq-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    .faq-question {
        font-size: 1rem;
    }

    .faq-accordion-body p {
        font-size: 0.95rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-form .form-control {
        padding: 0.875rem;
        font-size: 0.95rem;
    }

    .journey-timeline::before {
        display: none;
    }

    .journey-step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .journey-step.is-right .journey-content,
    .journey-step.is-right .journey-media {
        order: initial;
        text-align: center;
    }

    .journey-content {
        margin: 0 auto;
        max-width: 100%;
    }

    .journey-marker {
        margin: 0 auto;
    }

    .journey-media img {
        max-width: 100%;
    }

    .navbar {
        padding: 1rem 0;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .footer-brand {
        font-size: clamp(2.5rem, 8vw, 5rem);
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .landing-page {
        padding-top: 70px;
    }

    .landing-hero,
    .hero-pattern-divider,
    .landing-features,
    .landing-dashboard,
    .landing-journey,
    .landing-pricing,
    .landing-faq,
    .landing-contact {
        padding: 4.5rem 0;
    }

    .section-heading h2 {
        font-size: 1.5rem !important;
    }

    .section-heading p {
        font-size: 0.9rem !important;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-highlight {
        font-size: 1.1rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

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

    .hero-actions {
        gap: 0.75rem;
    }

    .feature-card {
        padding: 1.25rem;
    }

    .feature-number {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .feature-icon {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }

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

    .pricing-features li {
        font-size: 0.85rem;
    }

    .contact-card {
        padding: 1.25rem;
    }

    .contact-form .form-control {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .landing-page {
        padding-top: 64px;
    }

    .navbar-brand {
        font-size: 0.95rem;
    }

    .hero-title {
        font-size: 1.35rem;
    }

    .hero-highlight {
        font-size: 1rem;
    }

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

@media (max-width: 768px) {
    .navbar.scrolled {
        backdrop-filter: none;
    }

    .pattern-icon,
    .visual-blob,
    .pulse-dot::after {
        animation: none !important;
    }

    .mockup-card,
    .dashboard-screenshot,
    .nav-menu,
    #flash-messages .alert,
    .feature-card,
    .metric-card,
    .journey-marker,
    .journey-content,
    .media-container,
    .premium-card {
        box-shadow: none;
    }
}

/* Alerts */
#flash-messages {
    position: fixed;
    top: 5rem;
    right: 1rem;
    left: 1rem;
    z-index: 9999;
    pointer-events: none;
}

html[dir="rtl"] #flash-messages {
    right: 1rem;
    left: auto;
}

html[dir="ltr"] #flash-messages {
    left: 1rem;
    right: auto;
}

#flash-messages .alert {
    pointer-events: auto;
    margin-bottom: 0.75rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
/* Hero Section Redesign */
.landing-hero {
    background: linear-gradient(180deg, #fffbf7 0%, #fff 100%);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-yummy::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.04) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-right: 1rem;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 102, 0, 0.08);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 102, 0, 0.1);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-highlight {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-actions .btn {
    padding: 0.9rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.hero-actions .btn-primary {
    background: var(--primary);
    border: none;
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.25);
}

.hero-actions .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 102, 0, 0.35);
}

.hero-actions .btn-outline-danger {
    color: #444;
    border: 1px solid #ddd;
    background: white;
}

.hero-actions .btn-outline-danger:hover {
    border-color: var(--dark);
    color: var(--dark);
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Hero Mockups Container */
.hero-mockups {
    position: relative;
    height: 500px;
    /* Fixed height for stability */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-page img.mockup-main {
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

.mockup-card {
    position: absolute;
    border-radius: 16px;
    box-shadow: none;
    border: none;
    background: transparent;
    transition: transform 0.3s ease;
}

/* Main Center Image */
.mockup-main {
    width: 85%;
    max-width: 500px;
    z-index: 2;
    position: relative;
}

/* Floating Side Images */
.mockup-left,
.mockup-right {
    width: 45%;
    max-width: 250px;
    z-index: 1;
    bottom: -10%;
}

.mockup-left {
    left: 0;
    transform: rotate(-10deg) translateY(20px);
}

.mockup-right {
    right: 0;
    transform: rotate(10deg) translateY(30px);
}

/* Hover Effects */
.hero-mockups:hover .mockup-left {
    transform: rotate(-12deg) translateY(10px) translateX(-10px);
}

.hero-mockups:hover .mockup-right {
    transform: rotate(12deg) translateY(20px) translateX(10px);
}

/* Responsive Rules */
@media (max-width: 991px) {
    .landing-hero {
        padding: 6rem 0 4rem;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
        font-size: 1.1rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-mockups {
        height: auto;
        min-height: auto;
        margin-top: 1rem;
    }

    .mockup-main {
        width: 100%;
        max-width: 450px;
    }

    /* Hide side images on tablet/mobile to prevent clutter */
    .mockup-left,
    .mockup-right {
        display: none;
    }
}

@media (max-width: 576px) {
    .landing-hero {
        padding: 5rem 0 3rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }

    .hero-actions .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
        /* Even smaller for phones */
    }

    .hero-pill {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
}



/* Logos Section */
.landing-logos {
    padding: 3.5rem 0;
    background-color: #fff9f3;
}

.logo-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.logo-pill {
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 102, 0, 0.2);
    background-color: #ffffff;
    color: #ff7a1a;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Hero Pattern Divider */
.hero-pattern-divider {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #fff9f3 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.pattern-container {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding: 1rem 0;
}

.pattern-icon {
    font-size: 1.8rem;
    color: rgba(255, 102, 0, 0.15);
    animation: none;
}

.pattern-icon:nth-child(2n) {
    animation-delay: 0.5s;
}

.pattern-icon:nth-child(3n) {
    animation-delay: 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .pattern-container {
        gap: 1.5rem;
    }

    .pattern-icon {
        font-size: 1.4rem;
    }
}

/* Features Section */
.landing-features {
    padding: 10rem 0;
    position: relative;
    background-color: #ffffff;
}

.landing-features .hero-marker,
.landing-features .hero-marker::after {
    animation: none !important;
    transition: none !important;
}

.section-heading {
    margin-bottom: 4rem;
}

.section-heading h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.2;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.2rem;
}

.section-heading p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}

.section-badge {
    display: inline-flex;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 102, 0, 0.12);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: grid;
    gap: 0.8rem;
}

.feature-list li {
    position: relative;
    padding-right: 1.6rem;
    font-weight: 500;
}

.feature-list li::before {
    content: '\2713';
    position: absolute;
    right: 0;
    color: var(--primary);
    font-weight: 700;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
}

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

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

.feature-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 102, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 102, 0, 0.08);
    border-color: rgba(255, 102, 0, 0.2);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 102, 0, 0.03), transparent 70%);
    z-index: -1;
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-weight: 900;
    font-size: 1.2rem;
    color: rgba(255, 102, 0, 0.1);
    font-family: 'Poppins', sans-serif;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #ff8533 100%);
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 12px 25px rgba(255, 102, 0, 0.25);
    transition: all 0.4s ease;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), #ff8533);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-marker {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.hero-marker::after {
    content: "";
    position: absolute;
    top: 55%;
    left: -2%;
    right: -2%;
    bottom: -2%;
    background: var(--primary);
    opacity: 0.25;
    z-index: -1;
    transform: skewX(-15deg) rotate(-0.5deg);
    border-radius: 4px 8px 2px 6px;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(255, 102, 0, 0.4);
}

.feature-card h5 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

/* Enhanced Dashboard Section */
.landing-dashboard {
    background-color: var(--primary);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.landing-dashboard .hero-title,
.landing-dashboard .hero-highlight,
.landing-dashboard .hero-subtitle,
.landing-dashboard .text-muted,
.landing-dashboard .h1,
.landing-dashboard p,
.landing-dashboard h2,
.landing-dashboard .lead {
    color: #ffffff !important;
}

/* Fix metric cards inside dashboard */
.landing-dashboard .metric-card {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.landing-dashboard .metric-card h4,
.landing-dashboard .metric-card p {
    color: #ffffff !important;
}

.landing-dashboard .metric-icon {
    background: #ffffff !important;
    color: var(--primary) !important;
}

.landing-dashboard .btn-primary {
    background-color: #ffffff;
    color: var(--primary);
    border-color: #ffffff;
    font-weight: 700;
}

.landing-dashboard .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
}

.landing-dashboard::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.05), transparent 70%);
    top: -100px;
    left: -100px;
    z-index: 0;
}

.dashboard-visual {
    position: relative;
    z-index: 1;
}

.visual-blob {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.08), transparent 60%);
    top: -10%;
    left: -10%;
    border-radius: 50%;
    animation: none;
}

/* Unused keyframes removed */

.dashboard-screenshot {
    position: relative;
    border-radius: 24px;
    box-shadow: none;
    border: 8px solid #ffffff;
    transition: none;
}

.dashboard-screenshot:hover {
    transform: none;
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.floating-badge.top-right {
    top: 20px;
    right: -20px;
    border: 1px solid rgba(255, 102, 0, 0.1);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    animation: none;
}

/* Unused keyframes removed */

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

.metric-card {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 102, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: none;
    transition: none;
}

.metric-card:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(255, 102, 0, 0.05);
}

.metric-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.bg-soft-primary {
    background: rgba(255, 102, 0, 0.1);
    color: var(--primary);
}

.bg-soft-success {
    background: rgba(255, 102, 0, 0.1);
    color: var(--primary);
}

.bg-soft-warning {
    background: rgba(255, 102, 0, 0.1);
    color: var(--primary);
}

.bg-soft-danger {
    background: rgba(255, 102, 0, 0.1);
    color: var(--primary);
}

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

    .landing-dashboard {
        padding: 5rem 0;
    }

    .floating-badge.top-right {
        right: 0;
        top: 10px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Success Section */
.landing-success {
    background: #ffffff;
    padding: 6rem 0;
}

.success-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 102, 0, 0.15);
    box-shadow: 0 18px 35px rgba(255, 102, 0, 0.08);
    height: 100%;
}

.success-image {
    height: 140px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ffe6d5, #fff5ec);
    margin-bottom: 1rem;
}

/* Journey Section */
.landing-journey {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 50%, #ffffff 100%);
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

/* Modern Journey Timeline */
.journey-timeline {
    position: relative;
    padding: 3rem 0;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: repeating-linear-gradient(to bottom,
            transparent,
            transparent 10px,
            rgba(255, 102, 0, 0.3) 10px,
            rgba(255, 102, 0, 0.3) 20px);
    transform: translateX(-50%);
}

.journey-timeline::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 6px;
    background: linear-gradient(to bottom, var(--primary), #ff8533);
    transform: translateX(-50%);
    opacity: 0.1;
    filter: blur(4px);
}

.journey-step {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5rem;
    position: relative;
    width: 100%;
}

.journey-step>* {
    flex: 1;
}

.journey-content {
    max-width: 450px;
    border-radius: 30px !important;
    position: relative;
    z-index: 1;
    background: #ffffff;
    border: 1px solid rgba(255, 102, 0, 0.05) !important;
    padding: 2.5rem !important;
}

/* Hover effect removed as requested */
.journey-step:hover .journey-content {
    border-color: rgba(255, 102, 0, 0.05) !important;
}

.journey-content .step-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgba(255, 102, 0, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

/* Hover effect removed as requested */
.journey-step:hover .step-icon {
    background: rgba(255, 102, 0, 0.08);
    color: var(--primary);
}

.journey-marker {
    flex: 0 0 70px;
    width: 70px;
    min-width: 70px;
    height: 70px;
    aspect-ratio: 1;
    background: #ffffff;
    border: 6px solid #fff5f0;
    box-shadow: 0 0 0 2px var(--primary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.6rem;
    position: relative;
    z-index: 5;
    margin: 0 3rem;
}

/* Hover effect removed as requested */
.journey-step:hover .journey-marker {
    background: #ffffff;
    color: var(--primary);
}

.journey-marker span {
    position: relative;
    z-index: 2;
}

.journey-media {
    max-width: 450px;
}

.media-container {
    padding: 12px;
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

/* Hover effect removed as requested */
.journey-step:hover .media-container {
    transform: none;
}

/* Hover effect removed as requested */
.journey-step.is-right:hover .media-container {
    transform: none;
}

.media-container img {
    border-radius: 20px;
    width: 100%;
}

/* RTL Specific adjustments for timeline */
.journey-step.is-right {
    flex-direction: row-reverse;
}

.journey-step.is-right .journey-content {
    text-align: right;
}

@media (max-width: 991px) {
    .journey-timeline::before {
        left: 30px;
        transform: none;
    }

    .journey-step {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 70px;
    }

    .journey-marker {
        position: absolute;
        left: 0;
        top: 0;
        margin: 0;
    }

    .journey-content,
    .journey-media {
        max-width: 100%;
        width: 100%;
        margin-bottom: 2rem;
    }

    .journey-step.is-right .journey-content {
        text-align: right;
    }
}

/* Premium Pricing Section */
.landing-pricing {
    background-color: var(--primary);
    padding: 8rem 0;
    color: #ffffff;
}

.landing-pricing .section-heading h2,
.landing-pricing .section-heading p,
.landing-pricing .text-muted,
.landing-pricing .lead {
    color: #ffffff !important;
}

.landing-pricing .pricing-card {
    background: #ffffff;
    color: var(--dark);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.landing-pricing .pricing-card .text-muted {
    color: #666 !important;
}

.landing-pricing .pricing-card h3,
.landing-pricing .pricing-card .price-value .amount {
    color: var(--dark) !important;
}

.landing-pricing .pricing-notice {
    background: rgba(255, 102, 0, 0.08) !important;
}

.landing-pricing .pricing-notice span {
    color: var(--primary) !important;
}

.pricing-toggle-wrapper {
    display: inline-flex;
    background: #ffffff !important;
    padding: 6px !important;
    border-radius: 100px !important;
    border: 1px solid #eef2f6 !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-toggle-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
}

.pricing-toggle {
    display: flex;
    position: relative;
    background: #f8fafc !important;
    /* Light slate trough */
    padding: 0 !important;
    border-radius: 100px;
    isolation: isolate;
    min-width: 320px;
    border: 1px solid #f1f5f9;
}

.toggle-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    /* width/transform handled by JS */
    background: linear-gradient(135deg, var(--primary), #ff8533) !important;
    border-radius: 100px !important;
    box-shadow: 0 6px 15px rgba(255, 102, 0, 0.3) !important;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.toggle-btn {
    flex: 1;
    border: none !important;
    background: none !important;
    padding: 12px 28px !important;
    border-radius: 100px !important;
    font-weight: 700 !important;
    color: #64748b !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    position: relative;
    z-index: 2;
    font-size: 0.95rem !important;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    outline: none !important;
}

.toggle-btn.active {
    color: #ffffff !important;
    /* White text on primary bg for maximum impact */
}

.toggle-btn:hover:not(.active) {
    color: var(--primary);
}

.discount-badge {
    background: rgba(255, 255, 255, 0.2) !important;
    /* Semi-transparent white on the orange bg */
    color: #ffffff !important;
    padding: 2px 10px !important;
    border-radius: 100px !important;
    font-size: 0.7rem !important;
    font-weight: 800 !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    transition: all 0.3s ease;
}

.toggle-btn:not(.active) .discount-badge {
    background: #fff0eb !important;
    color: var(--primary) !important;
    border: 1px solid rgba(255, 102, 0, 0.1) !important;
}

.premium-card {
    background: white;
    border-radius: 32px;
    padding: 3rem;
    position: relative;
    border: 1px solid rgba(255, 102, 0, 0.1);
    box-shadow: none;
    transition: none;
    overflow: hidden;
}

.premium-card.is-featured {
    border: 2px solid var(--primary);
    box-shadow: none;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.premium-card:hover {
    transform: none;
    box-shadow: none;
}

.featured-ribbon {
    position: absolute;
    top: 30px;
    left: -35px;
    background: var(--primary);
    color: white;
    padding: 8px 45px;
    font-size: 0.85rem;
    font-weight: 700;
    transform: rotate(-45deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.price-box {
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-value .amount {
    font-size: 3.5rem;
    color: var(--dark);
    letter-spacing: -1px;
}

.price-value .currency {
    color: var(--primary);
    vertical-align: super;
}

.pricing-features-list {
    margin: 0;
}

.pricing-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem 0;
    font-weight: 500;
    color: #444;
    line-height: 1.6;
    text-align: start;
}

.icon-wrap {
    width: 24px;
    height: 24px;
    background: rgba(255, 102, 0, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.bg-soft-primary {
    background: rgba(255, 102, 0, 0.06);
}

.discount-badge {
    background: var(--dark);
    color: white;
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 0.75rem;
    margin-left: 5px;
}

@media (max-width: 768px) {
    .premium-card {
        padding: 1.75rem;
    }

    .price-value .amount {
        font-size: 2.8rem;
    }

    .premium-card.is-featured {
        max-width: 100%;
    }
}

/* FAQ Section */
.landing-faq {
    background-color: #fcfcfc;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.landing-faq::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.faq-accordion {
    max-width: 850px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-accordion-item {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    border-color: rgba(255, 102, 0, 0.1);
}

.faq-accordion-item.active {
    border-color: rgba(255, 102, 0, 0.3);
    box-shadow: 0 15px 30px rgba(255, 102, 0, 0.08);
    transform: translateY(-3px);
}

.faq-accordion-header {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    text-align: right;
    position: relative;
    transition: background 0.2s ease;
}

.faq-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 102, 0, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-accordion-item:hover .faq-icon {
    background: var(--primary);
    color: #ffffff;
}

.faq-accordion-item.active .faq-icon {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.faq-question {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 700;
    color: #222222;
    text-align: right;
    line-height: 1.4;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: 50%;
    background: #f8f9fa;
}

.faq-accordion-item.active .faq-toggle {
    background: rgba(255, 102, 0, 0.1);
    color: var(--primary);
    transform: rotate(180deg);
}

.faq-accordion-body {
    max-height: 0;
    overflow: hidden;
    background-color: #ffffff;
}

.faq-accordion-item.active .faq-accordion-body {
    max-height: 500px;
    /* Transition removed as requested */
}

.faq-accordion-body p {
    padding: 0 2rem 2rem calc(2rem + 48px + 1.5rem);
    margin: 0;
    color: #555555;
    line-height: 1.8;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .landing-faq {
        padding: 5rem 0;
    }

    .faq-accordion-header {
        padding: 1.25rem 1.25rem;
        gap: 1rem;
    }

    .faq-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        border-radius: 10px;
    }

    .faq-question {
        font-size: 1rem;
    }

    .faq-toggle {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .faq-accordion-body p {
        padding: 0 1.25rem 1.5rem;
        /* Full width on mobile */
    }
}

/* Contact Section */
.landing-contact {
    background-color: var(--primary);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.landing-contact .section-heading h2,
.landing-contact .section-heading p {
    color: #ffffff !important;
}

.landing-contact .social-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.landing-contact .social-card h5,
.landing-contact .social-card p {
    color: #ffffff !important;
}

.landing-contact .social-icon {
    background: #ffffff !important;
    color: var(--primary) !important;
}

.landing-contact .section-heading h2 {
    color: #1a1a1a;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.landing-contact .section-heading p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Social Card Design */
.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    height: 100%;
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

/* Icon Styles */
.social-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.social-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.social-card p {
    font-size: 0.95rem;
    color: #777;
    margin: 0;
    line-height: 1.5;
}

/* Brand Specific Hover Effects */

/* Facebook */
.social-card[href*="facebook"]:hover {
    border-top: 4px solid var(--primary);
}

.social-card[href*="facebook"]:hover .social-icon {
    background: rgba(255, 102, 0, 0.1);
    color: var(--primary);
    transform: scale(1.1) rotate(-5deg);
}

.social-card[href*="facebook"]:hover h5 {
    color: var(--primary);
}

/* Telegram */
.social-card[href*="t.me"]:hover {
    border-top: 4px solid var(--primary);
}

.social-card[href*="t.me"]:hover .social-icon {
    background: rgba(255, 102, 0, 0.1);
    color: var(--primary);
    transform: scale(1.1) rotate(-5deg);
}

.social-card[href*="t.me"]:hover h5 {
    color: var(--primary);
}

/* WhatsApp */
.social-card[href*="wa.me"]:hover {
    border-top: 4px solid var(--primary);
}

.social-card[href*="wa.me"]:hover .social-icon {
    background: rgba(255, 102, 0, 0.1);
    color: var(--primary);
    transform: scale(1.1) rotate(-5deg);
}

.social-card[href*="wa.me"]:hover h5 {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .landing-contact {
        padding: 4rem 0;
    }

    .social-card {
        padding: 2rem;
    }

    .social-icon {
        width: 64px;
        height: 64px;
        font-size: 1.6rem;
    }

    .social-card h5 {
        font-size: 1.1rem;
    }
}

.contact-form .form-group {
    margin-bottom: 1.75rem;
}

.contact-form .form-label {
    font-weight: 600;
    color: #222222;
    margin-bottom: 0.75rem;
    display: block;
}

.contact-form .form-control {
    border: 2px solid rgba(255, 102, 0, 0.15);
    border-radius: 14px;
    padding: 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(255, 102, 0, 0.15);
}

.contact-form .form-control::placeholder {
    color: #999999;
}

.contact-form .btn-primary.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 14px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .btn-primary.btn-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
}

@media (max-width: 768px) {
    .landing-contact {
        padding: 5rem 0;
    }

    .contact-card {
        padding: 2rem;
    }

    .contact-form .form-control {
        padding: 0.875rem;
    }
}

@media (max-width: 768px) {

    .landing-faq,
    .landing-contact {
        padding: 5rem 0;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-item {
        flex-direction: column;
        gap: 1rem;
    }

    .faq-icon {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }

    .info-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
}

.contact-form .form-control {
    border-radius: 12px;
    border-color: rgba(255, 102, 0, 0.2);
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(255, 102, 0, 0.2);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(255, 133, 51, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-details h6 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.contact-details p {
    font-size: 0.9rem;
}

/* Footer */
.footer.footer-inversa {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0;
    color: var(--dark);
    font-family: 'Expo Arabic', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer.footer-inversa .footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer.footer-inversa .footer-column {
    padding: 3rem 3.5rem;
    min-height: 220px;
    border-inline-start: 1px solid rgba(255, 255, 255, 0.2);
}

.footer.footer-inversa .footer-column:first-child {
    border-inline-start: none;
}

.footer.footer-inversa .footer-block {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer.footer-inversa .footer-kicker {
    font-size: 0.78rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.footer.footer-inversa .footer-text {
    font-size: 1rem;
    color: #ffffff;
}

.footer.footer-inversa .footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer.footer-inversa .footer-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer.footer-inversa .footer-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer.footer-inversa .footer-subscribe {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.6rem;
}

.footer.footer-inversa .footer-subscribe input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 0.95rem;
    padding: 0;
    outline: none;
}

.footer.footer-inversa .footer-subscribe input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer.footer-inversa .footer-subscribe button {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    padding: 0;
}

.footer.footer-inversa .footer-brand {
    font-size: clamp(3.8rem, 12vw, 8rem);
    font-weight: 700;
    color: #ffffff;
    padding: 1.5rem 1rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    display: block;
}

.footer.footer-inversa .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 3.5rem 1.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    gap: 1rem;
    flex-wrap: wrap;
}

.footer.footer-inversa .footer-bottom-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.footer.footer-inversa .footer-bottom-link:hover {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-qr {
        position: static;
    }

    .footer.footer-inversa .footer-column {
        padding: 2rem 1.5rem;
        border-inline-start: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer.footer-inversa .footer-column:first-child {
        border-top: none;
    }

    .footer.footer-inversa .footer-brand {
        padding: 2rem 1.5rem 1.5rem;
    }

    .footer.footer-inversa .footer-bottom {
        padding: 1rem 1.5rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .phone-stack {
        flex-direction: column;
        align-items: center;
    }

    .phone-card--left,
    .phone-card--right {
        transform: none;
        opacity: 1;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.is-featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .footer.footer-inversa .footer-column {
        padding: 1.5rem 1rem;
    }

    .footer.footer-inversa .footer-brand {
        font-size: clamp(2rem, 10vw, 4rem);
        padding: 1.5rem 1rem 1rem;
    }

    .footer.footer-inversa .footer-bottom {
        padding: 1rem 1rem 1.5rem;
        font-size: 0.75rem;
    }

    .footer.footer-inversa .footer-bottom-item {
        margin-bottom: 0.5rem;
    }

    .footer.footer-inversa .footer-kicker {
        font-size: 0.7rem;
    }

    .footer.footer-inversa .footer-text {
        font-size: 0.9rem;
    }

    .footer.footer-inversa .footer-link {
        font-size: 0.85rem;
    }

    .footer.footer-inversa .footer-subscribe input {
        font-size: 0.85rem;
    }

    .footer.footer-inversa .footer-subscribe button {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .landing-hero {
        padding: 4rem 0 3rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
    }

    .section-heading h2,
    .section-heading h3 {
        font-size: 1.8rem;
    }

    .footer.footer-inversa .footer-column {
        padding: 1.25rem 0.75rem;
    }

    .footer.footer-inversa .footer-brand {
        font-size: clamp(1.8rem, 12vw, 3.5rem);
        padding: 1.25rem 0.75rem 0.75rem;
    }

    .footer.footer-inversa .footer-bottom {
        padding: 0.75rem 0.75rem 1.25rem;
        font-size: 0.7rem;
    }

    .footer.footer-inversa .footer-bottom-item {
        margin-bottom: 0.4rem;
    }

    .footer.footer-inversa .footer-kicker {
        font-size: 0.65rem;
    }

    .footer.footer-inversa .footer-text {
        font-size: 0.85rem;
    }

    .footer.footer-inversa .footer-link {
        font-size: 0.8rem;
    }

    .footer.footer-inversa .footer-subscribe {
        gap: 0.5rem;
    }

    .footer.footer-inversa .footer-subscribe input {
        font-size: 0.8rem;
    }

    .footer.footer-inversa .footer-subscribe button {
        font-size: 0.9rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .navbar.scrolled {
        backdrop-filter: none;
    }

    .btn-primary:hover,
    .feature-card:hover,
    .dashboard-screenshot:hover,
    .metric-card:hover,
    .journey-content:hover,
    .media-container:hover,
    .premium-card:hover {
        transform: none !important;
    }

    .mockup-card,
    .dashboard-screenshot,
    .nav-menu,
    #flash-messages .alert,
    .feature-card,
    .metric-card,
    .journey-content,
    .media-container,
    .premium-card,
    .navbar.scrolled {
        box-shadow: none !important;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* =========================================
   Mobile Professional Polish
   ========================================= */

@media (max-width: 991px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .section-heading {
        margin-bottom: 3rem !important;
    }

    .navbar-collapse {
        background: #ffffff;
        padding: 1rem;
        border-radius: 16px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {

    /* Global Typography & Spacing */
    body {
        font-size: 16px;
        /* Prevents iOS zoom on inputs */
    }

    h1,
    .h1 {
        font-size: 2.25rem !important;
    }

    h2,
    .h2 {
        font-size: 1.75rem !important;
    }

    h3,
    .h3 {
        font-size: 1.5rem !important;
    }

    p {
        font-size: 1rem !important;
        line-height: 1.6;
    }

    .section-heading h2 {
        font-size: 1.8rem !important;
        margin-bottom: 0.75rem;
    }

    .section-heading p {
        font-size: 1rem !important;
        padding: 0 1rem;
    }

    /* Navbar Polish */
    .navbar-brand {
        font-size: 1.4rem;
    }

    .navbar-toggler {
        border: none;
        padding: 0.5rem;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    /* Hero Polish */
    .landing-hero {
        padding: 6rem 0 4rem;
        text-align: center;
    }

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

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        padding: 0 2rem;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* Feature Cards Polish */
    .feature-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    /* Journey Timeline Polish */
    .journey-step {
        padding-left: 0;
        text-align: center;
        margin-bottom: 3rem;
    }

    .journey-timeline::before {
        display: none;
        /* Hide vertical line on mobile for cleaner look */
    }

    .journey-marker {
        margin: 0 auto 1.5rem;
        position: relative;
        left: auto;
        top: auto;
    }

    /* Pricing Polish */
    .pricing-card {
        margin: 0 1rem 1.5rem;
    }

    .pricing-toggle {
        min-width: auto;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        flex-wrap: nowrap !important;
    }

    .toggle-btn {
        padding: 10px 12px !important;
        font-size: 0.8rem !important;
        gap: 6px !important;
    }

    .discount-badge {
        font-size: 0.6rem !important;
        padding: 1px 6px !important;
    }

    /* Footer Polish */
    .footer-brand {
        font-size: 2.5rem !important;
        padding: 1.5rem 1rem;
    }

    .footer-column {
        text-align: center;
        padding: 2rem 1rem;
        border: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    }

    .footer-subscribe {
        justify-content: center;
    }

    /* Form Inputs */
    .form-control {
        font-size: 16px !important;
        /* Prevent zoom */
        padding: 0.8rem 1rem;
    }

    /* Buttons */
    .btn {
        padding: 0.8rem 1.5rem;
        min-height: 48px;
        /* Touch target size */
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-title {
        font-size: 1.85rem !important;
    }

    .hero-actions {
        padding: 0;
    }
}

/* Section Separators Styling */
.section-separator {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

.section-separator svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.section-separator.is-inverted {
    background-color: var(--primary);
}

.section-separator.is-inverted svg {
    transform: rotate(180deg);
}

/* Adjust section spacing to accommodate separators */
.landing-features {
    padding-bottom: 0 !important;
}

.landing-dashboard {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.landing-journey {
    padding-top: 4rem !important;
    padding-bottom: 0 !important;
}

.landing-pricing {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.landing-faq {
    padding-top: 4rem !important;
    padding-bottom: 0 !important;
}

.landing-contact {
    padding-top: 2rem !important;
}

@media (max-width: 768px) {
    .section-separator svg {
        height: 60px;
    }
}