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

html {
    background: #000000;
    overscroll-behavior: none;
    overflow-x: hidden;
}

:root {
    /* Brand colors from luma-salon-webapp */
    --brand-400: #ff5fb5;
    --brand-500: #ff1f8f;
    --brand-600: #c90a7a;

    --primary-color: #ff1f8f;
    --primary-dark: #c90a7a;
    --primary-light: #ff5fb5;
    --secondary-color: #f59e0b;
    --accent-color: #ff1f8f;
    --text-primary: #000000;
    --text-secondary: #6b7280;
    --text-light: rgba(255, 255, 255, 0.7);
    --background: #ffffff;
    --background-light: #f9fafb;
    --border-color: #e5e7eb;
    --gradient-primary: linear-gradient(135deg, #ff7cc7 0%, #c90a7a 100%);
    --gradient-luxury: linear-gradient(135deg, #ff7cc7 0%, #ff1f8f 50%, #c90a7a 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    /* Header specific */
    --header-bg: #000000;
    --header-text: #ffffff;
    --header-text-muted: rgba(255, 255, 255, 0.7);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--header-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation - GlossGenius inspired */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--header-bg);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo .logo-text {
    font-family: 'Archivo Black', sans-serif;
    font-size: 32px;
    color: var(--header-text);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--header-text);
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-menu a:hover,
.nav-menu a:focus,
.nav-menu a:active {
    color: var(--primary-color);
    outline: none;
    border: none;
    box-shadow: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.nav-join-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    min-width: 150px;
    text-align: center;
    background: var(--header-text);
    color: var(--header-bg);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-join-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

.lang-toggle {
    display: flex;
    min-width: 92px;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.lang-toggle:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

.lang-option {
    flex: 1;
    text-align: center;
    font-weight: 500;
    font-size: 12px;
    color: var(--header-text-muted);
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 6px 0;
    border-radius: 18px;
    letter-spacing: 0.05em;
}

.lang-option:hover {
    color: var(--header-text);
}

.lang-option.active {
    color: var(--header-bg);
    background: var(--header-text);
}

.lang-divider {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    gap: 5px;
}

.bar {
    width: 24px;
    height: 2px;
    background: var(--header-text);
    transition: 0.3s;
    border-radius: 1px;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 40px 0 60px;
    background: #000000;
    min-height: 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    display: none;
}

.hero::after {
    display: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}


.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
    min-height: 3.85rem;
    opacity: 0;
    transform: translateY(30px);
    animation: smoothTitleAppear 1.2s ease-out 0.3s forwards;
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: smoothTextAppear 1s ease-out 0.8s forwards;
}

.btn-primary, .btn-outline {
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.large {
    padding: 20px 40px;
    font-size: 18px;
}

/* Phone Mockup Carousel */
.hero-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
}

/* Mockup Background Glow */
.mockup-background {
    position: absolute;
    width: clamp(900px, 180vw, 1600px);
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    z-index: 0;
    pointer-events: none;
    opacity: 0.95;
}

/* Mockup Container */
.mockup-container {
    position: relative;
    z-index: 1;
    width: 380px;
    height: 680px;
}

/* Content Container inside phone */
.mockup-content-container {
    position: absolute;
    top: 3.5%;
    left: 7%;
    right: 7%;
    bottom: 3.5%;
    z-index: 1;
    border-radius: 38px;
    overflow: hidden;
}

.phones-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-container {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

/* Desktop: Phone container positioning */
@media (min-width: 769px) {
    .phone-container#instagramPhone {
        top: 0;
        left: 0;
        z-index: 2;
        transform: none;
    }

    .phone-container.active {
        opacity: 1;
    }
}

/* Medium Desktop: Adjust spacing for 4 cards */
@media (min-width: 1025px) and (max-width: 1300px) {
    .pricing-grid {
        gap: 16px;
        max-width: 1200px;
    }

    .pricing-card {
        padding: 22px 14px;
    }

    .pricing-header h3 {
        font-size: 1.2rem;
    }

    .amount {
        font-size: 2.2rem;
    }

    .pricing-features li {
        font-size: 13px;
        padding: 6px 0;
    }

    .pricing-card.featured {
        transform: scale(1.02);
    }
}

/* Tablet: 2-column layout for pricing */
@media (min-width: 769px) and (max-width: 1024px) {
    .included-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .pricing-card.featured {
        transform: scale(1.02);
    }
}

/* Mobile: Show only one phone at a time */
@media (max-width: 768px) {
    .phones-carousel {
        width: 100%;
        height: 100%;
    }

    .phone-container {
        width: 100%;
        height: 100%;
        top: 0 !important;
        left: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        z-index: 2 !important;
    }

    .phone-container.active {
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 2 !important;
        transform: none !important;
    }
}

.phone-mockup {
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 32px;
    padding: 0;
    box-shadow: none;
    position: relative;
    transform: none;
    transition: transform 0.4s ease;
}

.phone-container.active .phone-mockup {
    transform: none;
}

.phone-mockup::before {
    display: none;
}

.phone-mockup::after {
    display: none;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    border: none;
}

.instagram-chat {
    height: 100%;
    background: #ffffff;
    position: relative;
    display: flex;
    flex-direction: column;
}

.chat-header {
    background: #ffffff;
    padding: 45px 15px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #262626;
    font-size: 14px;
    border-bottom: 1px solid #dbdbdb;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-left i {
    font-size: 18px;
    color: #262626;
}

.profile-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-pic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    position: relative;
}

.profile-pic::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: #ffffff;
}

.profile-details {
    display: flex;
    flex-direction: column;
}

.username {
    font-weight: 600;
    font-size: 14px;
    color: #262626;
}

.status {
    font-size: 12px;
    color: #8e8e8e;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-right i {
    font-size: 18px;
    color: #262626;
    cursor: pointer;
}

.date-separator {
    text-align: center;
    margin: 15px 0;
}

.date-separator span {
    background: #e4e6ea;
    color: #65676b;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.chat-messages {
    padding: 15px;
    flex: 1;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    transition: all 0.3s ease;
}

.chat-messages::-webkit-scrollbar {
    display: none;
}

.message {
    margin-bottom: 8px;
    max-width: 75%;
    display: flex;
    align-items: flex-end;
    animation: messagePopIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.message-content {
    position: relative;
}

.message-content p {
    padding: 8px 12px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.3;
    margin: 0;
    word-wrap: break-word;
    text-align: left;
}

.message-time {
    font-size: 11px;
    color: #8e8e8e;
    margin-top: 4px;
    display: block;
}

.message.received {
    margin-right: auto;
}

.message.received .message-content p {
    background: #e4e6ea;
    color: #050505;
    border-bottom-left-radius: 4px;
}

.message.sent {
    margin-left: auto;
    flex-direction: row-reverse;
}

.message.sent .message-content {
    text-align: right;
}

.message.sent .message-content p {
    background: #3897f0;
    color: white;
    border-bottom-right-radius: 4px;
    text-align: left;
}

.chat-input {
    padding: 10px 15px;
    border-top: 1px solid #dbdbdb;
    background: #ffffff;
}

.input-container {
    display: flex;
    align-items: center;
    background: #f0f2f5;
    border-radius: 22px;
    padding: 8px 15px;
    gap: 10px;
    border: 1px solid #dbdbdb;
}

.input-container input {
    flex: 1;
    background: none;
    border: none;
    color: #050505;
    font-size: 14px;
    outline: none;
}

.input-container input::placeholder {
    color: #65676b;
}

.input-container i {
    color: #65676b;
    font-size: 16px;
    cursor: pointer;
}

.input-container i:hover {
    color: #1877f2;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Section Dividers */
.section-divider {
    height: 80px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    opacity: 0.1;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
}

.section-divider::after {
    content: '✨';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0.6;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--background-light);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(45deg, transparent 0%, rgba(139, 92, 246, 0.03) 50%, transparent 100%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-luxury);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}


/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: white;
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(135deg, transparent 0%, rgba(236, 72, 153, 0.02) 50%, transparent 100%);
    pointer-events: none;
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 40px 0 50px;
}

.billing-option {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.billing-option.active {
    color: var(--primary-color);
    font-weight: 600;
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    border-radius: 30px;
    transition: 0.4s;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    border-radius: 50%;
    transition: 0.4s;
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--gradient-luxury);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

/* Included Features Section */
.included-features {
    max-width: 1200px;
    margin: 80px auto 0;
    text-align: center;
}

.included-features h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.included-item {
    text-align: center;
    padding: 20px;
}

.included-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.included-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.included-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-luxury);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.price {
    margin-bottom: 30px;
}

.currency {
    font-size: 1.25rem;
    vertical-align: top;
    color: var(--text-secondary);
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

.pricing-features i {
    color: var(--primary-color);
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
    width: 16px;
    text-align: center;
}

/* Coming Soon Feature Styling */
.pricing-features li.coming-soon {
    opacity: 0.5;
    position: relative;
}

.badge-soon {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card .btn-primary,
.pricing-card .btn-outline {
    margin-top: auto;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: var(--gradient-luxury);
    text-align: center;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.9) 0%, rgba(236, 72, 153, 0.8) 50%, rgba(245, 158, 11, 0.9) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Footer */
.footer {
    background: var(--header-bg);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

.footer-brand p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        height: 70px;
    }

    .nav-logo .logo-text {
        font-size: 24px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--header-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        padding: 30px 20px;
        gap: 0;
        transform: none;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        padding: 16px 0;
        font-size: 14px;
        justify-content: center;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-actions {
        gap: 12px;
    }

    .nav-join-btn {
        padding: 10px 18px;
        min-width: 130px;
        font-size: 11px;
    }

    .lang-toggle {
        min-width: 86px;
        border-color: rgba(255, 255, 255, 0.2);
    }

    .lang-option {
        font-size: 11px;
        padding: 5px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: 100vh;
        padding: 30px 0 40px;
        overflow-x: hidden;
        overflow-y: visible;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        min-height: 2.75rem;
    }

    .hero-image {
        margin-bottom: 0px;
    }

    .mockup-background {
        width: clamp(900px, 200vw, 1600px);
        opacity: 0.85;
    }

    .mockup-container {
        width: 280px;
        height: 580px;
    }

    .mockup-content-container {
        top: 3.5%;
        left: 7%;
        right: 7%;
        bottom: 3.5%;
        border-radius: 32px;
    }

    .phones-carousel {
        width: 100%;
        height: 100%;
        margin: 0 auto;
    }

    .phone-container {
        width: 100%;
        height: 100%;
    }

    .phone-mockup {
        width: 100%;
        height: 100%;
        transform: none;
    }

    .phone-container.active .phone-mockup {
        transform: none;
    }


    .carousel-labels {
        gap: 20px;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    
    .carousel-label {
        font-size: 12px;
    }

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

    .included-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .included-item {
        padding: 15px;
    }

    .included-item i {
        font-size: 2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
    }

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

    .billing-toggle {
        margin: 30px 0 40px;
    }

    .discount-badge {
        display: block;
        margin-left: 0;
        margin-top: 8px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
        padding: 20px 0 40px;
        overflow-x: hidden;
        overflow-y: visible;
    }

    .hero-content h1 {
        font-size: 2rem;
        min-height: 2.2rem;
    }

    .hero-image {
        margin-bottom: 10px;
    }

    .mockup-background {
        width: clamp(900px, 240vw, 1700px);
        opacity: 0.85;
    }

    .mockup-container {
        width: 260px;
        height: 500px;
    }

    .mockup-content-container {
        top: 3.5%;
        left: 7%;
        right: 7%;
        bottom: 3.5%;
        border-radius: 28px;
    }

    .phones-carousel {
        width: 100%;
        height: 100%;
    }

    .phone-container {
        width: 100%;
        height: 100%;
    }

    .phone-mockup {
        width: 100%;
        height: 100%;
    }

    .phone-container.active {
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 2 !important;
    }


    .carousel-labels {
        gap: 15px;
        margin-top: 25px;
        margin-bottom: 15px;
    }
    
    .carousel-label {
        font-size: 11px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes smoothTitleAppear {
    0% {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(3px);
    }
    70% {
        opacity: 0.8;
        transform: translateY(5px);
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes smoothTextAppear {
    0% {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(2px);
    }
    60% {
        opacity: 0.7;
        transform: translateY(3px);
        filter: blur(0.5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}


.feature-card,
.pricing-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Focus states for accessibility */
button:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Chat message animations */
@keyframes messagePopIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    70% {
        opacity: 1;
        transform: scale(1.05) translateY(-2px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

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

/* Typing indicator */
.typing-indicator {
    animation: messagePopIn 0.3s ease-out;
}

.typing-dots {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 16px !important;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #65676b;
    animation: typingDots 1.5s infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDots {
    0%, 60%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    30% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Carousel Navigation */

.carousel-labels {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 15px;
}

.carousel-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.carousel-label.active {
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
}

/* Image Analysis Section */
.image-analysis {
    padding: 100px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.analysis-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.analysis-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.analysis-image::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 31, 143, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}

.analysis-image img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 31, 143, 0.3);
    transition: transform 0.3s ease;
}

.analysis-image img:hover {
    transform: scale(1.05);
}

.analysis-text {
    color: #ffffff;
}

.analysis-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ff7cc7 0%, #ff1f8f 50%, #c90a7a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.analysis-text p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.analysis-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.analysis-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 31, 143, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 31, 143, 0.2);
    transition: all 0.3s ease;
}

.analysis-feature-item:hover {
    background: rgba(255, 31, 143, 0.15);
    border-color: rgba(255, 31, 143, 0.4);
    transform: translateX(10px);
}

.analysis-feature-item i {
    font-size: 24px;
    color: #ff1f8f;
    min-width: 24px;
}

.analysis-feature-item span {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 968px) {
    .analysis-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .analysis-image {
        order: 2;
    }

    .analysis-text {
        order: 1;
    }

    .analysis-text h2 {
        font-size: 36px;
    }

    .analysis-text p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .image-analysis {
        padding: 60px 0;
    }

    .analysis-text h2 {
        font-size: 32px;
    }

    .analysis-feature-item {
        padding: 12px;
    }

    .analysis-feature-item i {
        font-size: 20px;
    }

    .analysis-feature-item span {
        font-size: 14px;
    }
}

/* Laptop Showcase in Features Section */
.laptop-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px 0 80px 0;
    padding: 40px 0;
}

.laptop-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 31, 143, 0.25) 0%, rgba(255, 127, 199, 0.15) 30%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.laptop-image {
    position: relative;
    z-index: 1;
    max-width: 90%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(255, 31, 143, 0.4));
    transition: transform 0.5s ease, filter 0.5s ease;
    animation: float 6s ease-in-out infinite;
}

.laptop-image:hover {
    transform: scale(1.02) translateY(-10px);
    filter: drop-shadow(0 40px 80px rgba(255, 31, 143, 0.6));
}

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

/* Responsive adjustments */
@media (max-width: 968px) {
    .laptop-showcase {
        margin: 40px 0 60px 0;
        padding: 20px 0;
    }

    .laptop-glow {
        width: 400px;
        height: 400px;
    }

    .laptop-image {
        max-width: 95%;
    }
}

@media (max-width: 768px) {
    .laptop-showcase {
        margin: 30px 0 40px 0;
    }

    .laptop-glow {
        width: 300px;
        height: 300px;
    }

    .laptop-image {
        max-width: 100%;
    }
    
    .laptop-image:hover {
        transform: scale(1.01) translateY(-5px);
    }
}

/* Multi-line title styling */
.analysis-text h2 {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.analysis-text h2 .title-line {
    display: block;
    animation: slideInLeft 0.6s ease-out backwards;
}

.analysis-text h2 .title-line:nth-child(1) {
    animation-delay: 0.1s;
}

.analysis-text h2 .title-line:nth-child(2) {
    animation-delay: 0.3s;
}

.analysis-text h2 .title-line:nth-child(3) {
    animation-delay: 0.5s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Consistent Centered Alignment for Landing Page */

/* Center hero content */
.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

/* Center image analysis text */
.analysis-text {
    text-align: center;
}

.analysis-text h2 {
    align-items: center;
}

.analysis-features {
    align-items: center;
}

.analysis-feature-item {
    max-width: 500px;
}

/* Ensure feature cards text is centered */
.feature-card {
    text-align: center;
}

.feature-card h3,
.feature-card p {
    text-align: center;
}

/* Center pricing cards */
.pricing-card {
    text-align: center;
}

/* Center CTA section */
.cta-content {
    text-align: center;
}

/* Responsive: maintain centering on mobile */
@media (max-width: 968px) {
    .analysis-content {
        text-align: center;
    }
    
    .analysis-text h2 {
        align-items: center;
    }
}

/* Override: Left Alignment for All Content (except footer) */

/* Left align hero content */
.hero-content {
    text-align: left !important;
    max-width: none !important;
    margin: 0 !important;
}

.hero-buttons {
    justify-content: flex-start !important;
}

/* Left align section headers */
.section-header {
    text-align: left !important;
}

.section-header p {
    margin: 0 !important;
}

/* Left align image analysis text */
.analysis-text {
    text-align: left !important;
}

.analysis-text h2 {
    align-items: flex-start !important;
}

.analysis-features {
    align-items: flex-start !important;
}

.analysis-feature-item {
    max-width: none !important;
}

/* Left align feature cards */
.feature-card {
    text-align: left !important;
}

.feature-card h3,
.feature-card p {
    text-align: left !important;
}

/* Left align pricing cards */
.pricing-card {
    text-align: left !important;
}

.pricing-header {
    text-align: left !important;
}

.pricing-features {
    text-align: left !important;
}

/* Left align CTA section */
.cta-content {
    text-align: left !important;
}

.cta-content h2,
.cta-content p {
    text-align: left !important;
}

.cta-buttons {
    justify-content: flex-start !important;
}

/* CENTER FOOTER ONLY */
.footer {
    text-align: center !important;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    text-align: center !important;
}

.footer-brand {
    text-align: center !important;
    margin-bottom: 40px;
}

.footer-brand p {
    text-align: center !important;
}

.social-links {
    justify-content: center !important;
}

.footer-links {
    display: flex;
    gap: 60px;
    justify-content: center !important;
    text-align: center !important;
}

.footer-column {
    text-align: center !important;
}

.footer-column ul {
    text-align: center !important;
}

.footer-bottom {
    text-align: center !important;
}

/* Responsive: maintain left alignment on mobile (except footer) */
@media (max-width: 968px) {
    .analysis-content {
        text-align: left !important;
    }
    
    .analysis-text {
        text-align: left !important;
    }
    
    .analysis-text h2 {
        align-items: flex-start !important;
    }
    
    .section-header {
        text-align: left !important;
    }
    
    /* Keep footer centered on mobile */
    .footer,
    .footer-content,
    .footer-brand,
    .footer-links,
    .footer-column {
        text-align: center !important;
    }
}

/* Center footer logo specifically */
.footer-logo {
    text-align: center !important;
    display: flex;
    justify-content: center !important;
    align-items: center;
    width: 100%;
}

.footer-logo .logo-text {
    text-align: center !important;
}

/* FINAL: Center Everything */

/* Center hero content */
.hero-content {
    text-align: center !important;
    max-width: 800px !important;
    margin: 0 auto !important;
}

.hero-buttons {
    justify-content: center !important;
}

/* Center section headers */
.section-header {
    text-align: center !important;
}

.section-header h2,
.section-header p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Center image analysis text */
.analysis-text {
    text-align: center !important;
}

.analysis-text h2 {
    align-items: center !important;
}

.analysis-text p {
    text-align: center !important;
}

.analysis-features {
    align-items: center !important;
}

.analysis-feature-item {
    max-width: 500px !important;
    margin: 0 auto !important;
}

/* Center feature cards */
.feature-card {
    text-align: center !important;
}

.feature-card h3,
.feature-card p,
.feature-card .feature-icon {
    text-align: center !important;
}

/* Center pricing cards */
.pricing-card {
    text-align: center !important;
}

.pricing-header {
    text-align: center !important;
}

.pricing-features {
    text-align: center !important;
}

/* Center CTA section */
.cta-content {
    text-align: center !important;
}

.cta-content h2,
.cta-content p {
    text-align: center !important;
}

.cta-buttons {
    justify-content: center !important;
}

/* Center footer */
.footer {
    text-align: center !important;
}

.footer-content {
    text-align: center !important;
}

.footer-brand {
    text-align: center !important;
}

/* Responsive: maintain centering on all devices */
@media (max-width: 968px) {
    .hero-content,
    .analysis-content,
    .analysis-text,
    .section-header,
    .feature-card,
    .pricing-card,
    .cta-content,
    .footer {
        text-align: center !important;
    }
    
    .analysis-text h2 {
        align-items: center !important;
    }
}

/* Footer: Spread out on desktop, centered on mobile */

/* Desktop: Horizontal spread layout */
@media (min-width: 769px) {
    .footer {
        text-align: left !important;
    }
    
    .footer-content {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
        text-align: left !important;
        gap: 40px;
    }
    
    .footer-brand {
        text-align: left !important;
        flex: 1;
        max-width: 350px;
    }
    
    .footer-logo {
        text-align: left !important;
        justify-content: flex-start !important;
    }
    
    .footer-brand p {
        text-align: left !important;
    }
    
    .social-links {
        justify-content: flex-start !important;
    }
    
    .footer-links {
        display: flex !important;
        flex-direction: row !important;
        gap: 60px !important;
        justify-content: flex-end !important;
        text-align: left !important;
        flex: 2;
    }
    
    .footer-column {
        text-align: left !important;
    }
    
    .footer-column h4 {
        text-align: left !important;
    }
    
    .footer-column ul {
        text-align: left !important;
    }
    
    .footer-column ul li {
        text-align: left !important;
    }
    
    .footer-bottom {
        text-align: center !important;
    }
}

/* Mobile: Keep centered */
@media (max-width: 768px) {
    .footer {
        text-align: center !important;
    }
    
    .footer-content {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .footer-brand {
        text-align: center !important;
    }
    
    .footer-logo {
        justify-content: center !important;
    }
    
    .social-links {
        justify-content: center !important;
    }
    
    .footer-links {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .footer-column {
        text-align: center !important;
    }
}

/* Align image analysis feature items to the left */
.analysis-features {
    align-items: flex-start !important;
}

.analysis-feature-item {
    text-align: left !important;
    justify-content: flex-start !important;
    margin: 0 !important;
    max-width: 100% !important;
}

.analysis-feature-item span {
    text-align: left !important;
}

/* FINAL ALIGNMENT: Left for everything except footer and pricing */

/* Left align hero content */
.hero-content {
    text-align: left !important;
    max-width: none !important;
    margin: 0 !important;
}

.hero-content h1,
.hero-content p {
    text-align: left !important;
}

.hero-buttons {
    justify-content: flex-start !important;
}

/* Left align image analysis section */
.analysis-text {
    text-align: left !important;
}

.analysis-text h2 {
    align-items: flex-start !important;
}

.analysis-text p {
    text-align: left !important;
}

/* Left align features section header and cards */
#features .section-header {
    text-align: left !important;
}

#features .section-header h2,
#features .section-header p {
    text-align: left !important;
    margin-left: 0 !important;
}

.feature-card {
    text-align: left !important;
}

.feature-card h3,
.feature-card p {
    text-align: left !important;
}

.feature-card .feature-icon {
    text-align: left !important;
}

/* Left align CTA section */
.cta-content {
    text-align: left !important;
}

.cta-content h2,
.cta-content p {
    text-align: left !important;
}

.cta-buttons {
    justify-content: flex-start !important;
}

/* KEEP CENTERED: Pricing section */
#pricing .section-header {
    text-align: center !important;
}

#pricing .section-header h2,
#pricing .section-header p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.billing-toggle {
    justify-content: center !important;
}

.pricing-grid {
    justify-content: center !important;
}

.pricing-card {
    text-align: center !important;
}

.pricing-card h3,
.pricing-card p,
.pricing-card .price {
    text-align: center !important;
}

.pricing-features {
    text-align: left !important;
}

/* Footer remains as configured (spread on desktop, centered on mobile) */

/* Responsive */
@media (max-width: 968px) {
    .hero-content,
    #features .section-header,
    .feature-card,
    .analysis-text,
    .cta-content {
        text-align: left !important;
    }
    
    /* Keep pricing centered on mobile too */
    #pricing .section-header,
    .pricing-card {
        text-align: center !important;
    }
}

/* FINAL: Center everything EXCEPT Pametna Analiza Slika section */

/* Center hero content */
.hero-content {
    text-align: center !important;
    max-width: 800px !important;
    margin: 0 auto !important;
}

.hero-content h1,
.hero-content p {
    text-align: center !important;
}

.hero-buttons {
    justify-content: center !important;
}

/* LEFT ALIGN: Image analysis section (exception) */
#image-analysis .analysis-text {
    text-align: left !important;
}

#image-analysis .analysis-text h2 {
    align-items: flex-start !important;
}

#image-analysis .analysis-text p {
    text-align: left !important;
}

#image-analysis .analysis-features {
    align-items: flex-start !important;
}

#image-analysis .analysis-feature-item {
    text-align: left !important;
    justify-content: flex-start !important;
}

/* Center features section */
#features .section-header {
    text-align: center !important;
}

#features .section-header h2,
#features .section-header p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.feature-card {
    text-align: center !important;
}

.feature-card h3,
.feature-card p {
    text-align: center !important;
}

.feature-card .feature-icon {
    margin: 0 auto !important;
}

/* Center pricing section */
#pricing .section-header {
    text-align: center !important;
}

#pricing .section-header h2,
#pricing .section-header p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.pricing-card {
    text-align: center !important;
}

/* Center CTA section */
.cta-content {
    text-align: center !important;
}

.cta-content h2,
.cta-content p {
    text-align: center !important;
}

.cta-buttons {
    justify-content: center !important;
}

/* Responsive */
@media (max-width: 968px) {
    /* Keep everything centered on mobile */
    .hero-content,
    #features .section-header,
    .feature-card,
    #pricing .section-header,
    .pricing-card,
    .cta-content {
        text-align: center !important;
    }
    
    /* EXCEPT image analysis section - stays left on mobile too */
    #image-analysis .analysis-text,
    #image-analysis .analysis-text h2,
    #image-analysis .analysis-text p,
    #image-analysis .analysis-features {
        text-align: left !important;
    }
    
    #image-analysis .analysis-text h2 {
        align-items: flex-start !important;
    }
}

/* Center button text in pricing cards */
.pricing-card .btn-primary,
.pricing-card .btn-outline,
.pricing-card button {
    text-align: center !important;
    justify-content: center !important;
    display: flex !important;
    align-items: center !important;
}

/* Center all buttons globally */
.btn-primary,
.btn-outline,
button.btn-primary,
button.btn-outline,
a.btn-primary,
a.btn-outline {
    text-align: center !important;
}

/* Center pricing card features */
.pricing-features {
    text-align: center !important;
    list-style: none !important;
    padding: 0 !important;
}

.pricing-features li {
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px;
}

.pricing-features li i {
    flex-shrink: 0;
}

/* Revert: Keep pricing card features LEFT-ALIGNED */
.pricing-features {
    text-align: left !important;
    list-style: none !important;
}

.pricing-features li {
    text-align: left !important;
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 8px;
}

.pricing-features li i {
    flex-shrink: 0;
}
