@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --bs-primary: #ff792b;
    --bs-primary-rgb: 255, 121, 43;
    --bs-secondary: #ff8e39;
    --gradient-bg: linear-gradient(135deg, #ff792b 0%, #ff8e39 100%);
    --light-bg: #fff;
    --card-bg: #ffffff;
    --border-color: #f0f0f0;
    --text-primary: #2d2d2d;
    --text-secondary: #666666;
    --text-muted: #999999;
}

body {
    background: var(--light-bg);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

/* Prevent horizontal scroll globally */
*, *::before, *::after {
    box-sizing: border-box;
}

.container {
    /* max-width: 100%;
    padding-left: 15px;
    padding-right: 15px; */
}

/* Hero Section Styles */
.hero-section {
    background: linear-gradient(rgb(235 113 37 / 80%), rgb(232 154 121 / 80%)), url(../images/bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-header {
    background: var(--gradient-bg);
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

/* Navigation Styles */
.navbar {
    background: var(--card-bg) !important;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.navbar-dark .navbar-brand {
    color: var(--text-primary);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    font-family: 'Inter', sans-serif;
}

/* Card Styles */
.login-container, .register-container {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    width: 100%;
}

.login-container {
    max-width: 420px;
}

.register-container {
    max-width: 480px;
}

.feature-card, .settings-card, .stat-card, .comment-card, .no-comments {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    transition: transform 0.2s, border-color 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.feature-card:hover, .stat-card:hover, .comment-card:hover {
    transform: translateY(-2px);
    border-color: var(--bs-primary);
}

.feature-card:hover {
    transform: translateY(-5px);
}

/* Logo Styles */
.logo {
    text-align: center;
    margin-bottom: 2rem;
}

.logo h1 {
    color: var(--bs-primary);
    margin: 0;
    font-size: 2.2rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.logo p {
    color: var(--text-secondary);
    margin: 0.5rem 0 0 0;
    font-size: 1rem;
}

/* Form Styles */
.form-control, .form-select {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    font-size: 1rem;
}

.form-control:focus, .form-select:focus {
    background: var(--card-bg);
    border-color: var(--bs-primary);
    color: var(--text-primary);
    box-shadow: 0 0 0 0.25rem rgba(255, 121, 43, 0.25);
}

.form-control::placeholder {
    color: var(--text-muted);
}

/* Button Styles */
.btn-primary {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    font-family: 'Inter', sans-serif;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: #e6691a;
    border-color: #e6691a;
}

.btn-outline-light {
    border-color: var(--border-color);
    color: var(--text-primary);
}

.btn-outline-light:hover {
    background: var(--light-bg);
    border-color: var(--border-color);
    color: var(--text-primary);
}

.btn-hero {
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 121, 43, 0.3);
}

/* Dashboard Specific Buttons */
.btn-approve {
    background: #28a745;
    border-color: #28a745;
}

.btn-approve:hover {
    background: #218838;
    border-color: #218838;
}

.btn-reject {
    background: #dc3545;
    border-color: #dc3545;
}

.btn-reject:hover {
    background: #c82333;
    border-color: #c82333;
}

.btn-edit {
    background: #17a2b8;
    border-color: #17a2b8;
}

.btn-edit:hover {
    background: #138496;
    border-color: #138496;
}

.btn-post {
    background: #fd7e14;
    border-color: #fd7e14;
}

.btn-post:hover {
    background: #e56b02;
    border-color: #e56b02;
}

/* Alert Styles */
.alert-danger {
    background: rgba(220, 53, 69, 0.2);
    border-color: #dc3545;
    color: #dc3545;
}

.alert-success {
    background: rgba(40, 167, 69, 0.2);
    border-color: #28a745;
    color: #28a745;
}

.alert-info, .trial-info {
    background: rgba(13, 202, 240, 0.2);
    border-color: #0dcaf0;
    color: #0dcaf0;
}

.trial-info {
    background: rgba(13, 202, 240, 0.15);
    border: 1px solid #0dcaf0;
    border-radius: 0.5rem;
}

.alert-warning {
    background: rgba(255, 193, 7, 0.2);
    border-color: #ffc107;
    color: #ffc107;
}

/* Navigation Pills */
.nav-pills .nav-link {
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    margin-right: 0.5rem;
}

.nav-pills .nav-link.active {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    color: white;
}

.nav-pills .nav-link:hover:not(.active) {
    background: var(--light-bg);
    border-color: var(--border-color);
    color: var(--text-primary);
}

/* Divider Styles */
.divider {
    position: relative;
    text-align: center;
    margin: 2rem 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.divider span {
    background: var(--card-bg);
    color: var(--text-secondary);
    padding: 0 1rem;
}

.section-divider {
    border-bottom: 2px solid var(--bs-primary);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

/* Link Styles */
.register-link, .login-link {
    text-align: center;
}

.register-link a, .login-link a {
    color: var(--bs-primary);
    text-decoration: none;
    font-weight: 500;
}

.register-link a:hover, .login-link a:hover {
    color: #e6691a;
    text-decoration: underline;
}

/* Stats Section */
.stats-section {
    background: #fafafa;
    padding: 4rem 0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bs-primary);
    font-family: 'Inter', sans-serif;
}

.stat-number.large {
    font-size: 3rem;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-bg);
    padding: 5rem 0;
}

/* Feature Icon */
.feature-icon {
    font-size: 3rem;
    color: var(--bs-primary);
    margin-bottom: 1rem;
}

/* Post Info */
.post-info {
    background: #fafafa;
    border-left: 4px solid var(--bs-primary);
}

/* Comment Styles */
.comment-text {
    background: #fafafa;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.edit-form textarea {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.edit-form textarea:focus {
    background: var(--card-bg);
    border-color: var(--bs-primary);
    color: var(--text-primary);
}

/* Footer */
.footer {
    background: var(--text-primary);
    padding: 3rem 0 1rem;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    body.login-page, body.register-page {
        padding: 20px 0;
    }
}

/* Auth Pages Background */
body.login-page, body.register-page {
    /* background: var(--gradient-bg); */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Global Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--text-primary);
}

.card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.form-label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--text-primary);
}

.alert {
    font-family: 'Inter', sans-serif;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

/* Card enhancements */
.card {
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.form-control, .form-select {
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
}

/* Button improvements */
.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

/* ========================================
   PREMIUM LANDING PAGE STYLES
======================================== */

/* Premium Navigation */
.navbar-premium {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid rgba(255, 121, 43, 0.1);
    transition: all 0.3s ease;
    padding: 0.2rem 0;
}

.navbar-premium.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.98) !important;
}

.brand-premium {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.75rem;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.nav-premium {
    font-weight: 500;
    color: var(--text-primary) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-premium:hover {
    background: rgba(255, 121, 43, 0.1);
    color: var(--bs-primary) !important;
}

.btn-cta-nav {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(255, 121, 43, 0.3);
}

/* Premium Hero Section */
.hero-section-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="1" fill="%23ff792b" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23ff8e39" opacity="0.2"/><circle cx="50" cy="50" r="0.5" fill="%23ff792b" opacity="0.4"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.hero-gradient {
    position: absolute;
    top: 20%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 121, 43, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.1); opacity: 0.2; }
}

.hero-content-premium {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 121, 43, 0.1);
    color: var(--bs-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 121, 43, 0.2);
}

.hero-title-premium {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.highlight-gradient {
    background: var(--gradient-bg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-premium {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
}

.stat-item .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--bs-primary);
    line-height: 1;
}

.stat-item .stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

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

.btn-hero-premium {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 200px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-hero-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 121, 43, 0.4);
}

.btn-subtitle {
    font-size: 0.75rem;
    opacity: 0.8;
    font-weight: 400;
}

.hero-trust {
    margin-top: 2rem;
}

.trust-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--bs-primary);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 2;
}

.dashboard-mockup {
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
}

.mockup-header {
    background: #f8f9fa;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.mockup-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #ff5f57; }
.control.yellow { background: #ffbd2e; }
.control.green { background: #28ca42; }

.mockup-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.mockup-content {
    padding: 1.5rem;
}

.comment-preview {
    space-y: 1rem;
}

.comment-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--bs-primary);
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
}

.status {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.status.approved {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.status.pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.comment-text {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.comment-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-mini {
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    border-radius: 6px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-mini.primary {
    background: var(--bs-primary);
    color: white;
}

.btn-mini.secondary {
    background: var(--border-color);
    color: var(--text-secondary);
}

.btn-mini.success {
    background: #28a745;
    color: white;
}

.btn-mini.danger {
    background: #dc3545;
    color: white;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-stat {
    position: absolute;
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    animation: floatUpDown 3s ease-in-out infinite;
}

.floating-stat:nth-child(1) {
    top: 20%;
    right: -20%;
    animation-delay: 0s;
}

.floating-stat:nth-child(2) {
    top: 60%;
    right: -15%;
    animation-delay: 1s;
}

.floating-stat:nth-child(3) {
    bottom: 20%;
    right: -25%;
    animation-delay: 2s;
}

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

.floating-stat i {
    color: var(--bs-primary);
    font-size: 1.5rem;
}

.floating-stat .number {
    font-weight: 700;
    color: var(--text-primary);
}

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

/* Social Proof Section */
.social-proof-section {
    padding: 3rem 0;
    background: #fafafa;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.social-proof-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.company-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.logo-item {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.logo-item:hover {
    opacity: 1;
}

/* Problem/Solution Section */
.problem-solution-section {
    padding: 6rem 0;
}

.problem-list, .solution-list {
    margin-top: 2rem;
}

.problem-item, .solution-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.problem-item i, .solution-item i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.problem-item h5, .solution-item h5 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.problem-item p, .solution-item p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* How It Works Section */
.how-it-works-section {
    padding: 6rem 0;
    background: #fafafa;
}

.step-card {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background: var(--card-bg);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--bs-primary);
    box-shadow: 0 15px 35px rgba(255, 121, 43, 0.1);
}

.step-card.active {
    border-color: var(--bs-primary);
    background: linear-gradient(135deg, rgba(255, 121, 43, 0.05) 0%, rgba(255, 142, 57, 0.05) 100%);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bs-primary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.step-icon {
    background: rgba(255, 121, 43, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 1.5rem;
}

.step-icon i {
    font-size: 2rem;
    color: var(--bs-primary);
}

.step-card h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.step-features span {
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding: 0.25rem 0.75rem;
    background: rgba(255, 121, 43, 0.1);
    border-radius: 20px;
}

/* Premium Features Section */
.features-section-premium {
    padding: 6rem 0;
}

.feature-card-premium {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-bg);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card-premium:hover::before {
    transform: scaleX(1);
}

.feature-card-premium:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 121, 43, 0.2);
    box-shadow: 0 15px 35px rgba(255, 121, 43, 0.1);
}

.feature-icon-premium {
    background: rgba(255, 121, 43, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon-premium i {
    font-size: 2rem;
    color: var(--bs-primary);
}

.feature-card-premium h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.feature-card-premium p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.highlight-item {
    font-size: 0.75rem;
    color: var(--bs-primary);
    background: rgba(255, 121, 43, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: #fafafa;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.rating {
    color: #ffc107;
    margin-bottom: 1rem;
}

.testimonial-content blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-style: italic;
    margin: 0;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Results Section */
.results-section {
    padding: 6rem 0;
    background: var(--gradient-bg);
    position: relative;
    overflow: hidden;
}

.results-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="white" opacity="0.1"/><circle cx="40" cy="60" r="1.5" fill="white" opacity="0.1"/></svg>');
}

.result-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.result-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}

.result-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* Premium Pricing Section */
.pricing-section-premium {
    padding: 6rem 0;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: 16px;
    border: 2px solid var(--border-color);
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--bs-primary);
    box-shadow: 0 15px 35px rgba(255, 121, 43, 0.1);
}

.pricing-card.popular {
    border-color: var(--bs-primary);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bs-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 12px 12px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 2;
}

.pricing-header {
    text-align: center;
    padding: 2rem 2rem 1rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0.25rem;
}

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

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

.pricing-features {
    padding: 0 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 121, 43, 0.1);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item i {
    color: var(--bs-primary);
    font-size: 1.25rem;
}

.feature-item span {
    color: var(--text-primary);
    font-weight: 500;
}

.pricing-action {
    padding: 2rem;
    text-align: center;
}

.btn-pricing {
    background: var(--bs-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    background: #e6691a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 121, 43, 0.4);
}

.pricing-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    margin-bottom: 0;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(255, 121, 43, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
}

.pricing-guarantee i {
    color: var(--bs-primary);
    font-size: 2rem;
}

.pricing-guarantee h5 {
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.pricing-guarantee p {
    margin: 0;
    color: var(--text-secondary);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: #fafafa;
}

.faq-accordion .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background: var(--card-bg);
    color: var(--text-primary);
    font-weight: 600;
    padding: 1.5rem;
    border: none;
    font-size: 1.1rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(255, 121, 43, 0.05);
    color: var(--bs-primary);
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.faq-accordion .accordion-body {
    padding: 1.5rem;
    background: var(--card-bg);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
    background: url(../images/bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 6rem 0;
    color: white;
    position: relative;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-bg);
    opacity: 0.9;
    z-index: 1;
}

.final-cta-section > * {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-actions {
    margin-bottom: 2rem;
}

.btn-cta-final {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 12px;
    background: white;
    color: var(--bs-primary);
    border: none;
    transition: all 0.3s ease;
}

.btn-cta-final:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.cta-guarantee i {
    font-size: 1.25rem;
}

/* Premium Footer */
.footer-premium {
    background: var(--text-primary);
    color: white;
    padding: 4rem 0 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand .brand-icon {
    background: var(--gradient-bg);
}

.footer-brand .brand-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: var(--bs-primary);
    color: white;
}

.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--bs-primary);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.badge-item i {
    color: var(--bs-primary);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .floating-stat {
        display: none;
    }
}

/* Fix horizontal scroll on mobile */
@media (max-width: 991px) {
    .floating-stat {
        display: none !important;
    }
    
    .hero-gradient {
        right: -5%;
        width: 50%;
    }
    
    .dashboard-mockup {
        transform: none !important;
    }
    
    .hero-visual {
        overflow: hidden;
    }
}

/* Additional mobile fixes */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .container, .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
    }
    
    .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .col-lg-6, .col-md-6, .col-sm-12 {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-background {
        overflow: hidden;
    }
    
    .hero-particles {
        width: 100%;
        overflow: hidden;
    }
}

@media (max-width: 768px) {
    .hero-title-premium {
        font-size: 2.5rem;
    }

    .hero-section-premium {
        top: 80px;
    }
    
    .hero-subtitle-premium {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .hero-stats {
        justify-content: space-between;
    }
    
    .stat-item .stat-number {
        font-size: 1.5rem;
    }
    
    .btn-hero-premium {
        min-width: auto;
        width: 100%;
    }
    
    .trust-badges {
        justify-content: center;
        gap: 1rem;
    }
    
    .company-logos {
        gap: 1.5rem;
    }
    
    .step-card {
        margin-bottom: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .footer-badges {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .navbar-toggler {
        border: none !important;
        padding: 0.25rem 0.5rem !important;
        z-index: 1050 !important;
    }
    
    .navbar-toggler:focus {
        box-shadow: none !important;
    }
    
    .navbar-collapse {
        z-index: 1049 !important;
    }
}

@media (max-width: 576px) {
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .dashboard-mockup {
        transform: none;
    }
    
    .plan-price .amount {
        font-size: 3rem;
    }
}


/* CUSTOM */

.logo-premium {
    max-height:70px;
}

.login-page {
    background: url(../images/bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.login-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-bg);
    opacity: 0.9;
    z-index: 1;
}

.login-page > * {
    position: relative;
    z-index: 2;
}

.register-page {
    background: url(../images/bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.register-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-bg);
    opacity: 0.9;
    z-index: 1;
}

.register-page > * {
    position: relative;
    z-index: 2;
}
.z-index-max {
    position: relative;
    z-index: 10;
}