:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #60a5fa;
    --secondary-color: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

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

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Navbar Styles */
#mainNav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

#mainNav.scrolled {
    box-shadow: var(--shadow-md);
    /* padding değişmeyecek - scroll efekti kaldırıldı */
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
}

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

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.highlight-text {
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Stats */
.hero-stats {
    animation: fadeInUp 1s ease 0.5s both;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
}

/* Hero Image */
.hero-image {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

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

.card-1 {
    top: 10%;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 0;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: 10%;
    animation-delay: 2s;
}

.mockup-container {
    position: relative;
    width: 400px;
    height: 500px;
    z-index: 1;
}

.mockup-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 2rem;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 8px solid #1e293b;
}

.mockup-header {
    background: #1e293b;
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ef4444;
}

.dot:nth-child(2) {
    background: #f59e0b;
}

.dot:nth-child(3) {
    background: #10b981;
}

.mockup-content {
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-ring {
    width: 200px;
    height: 200px;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Hero Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    opacity: 0.1;
    border-radius: 50%;
}

.shape-1 {
    width: 500px;
    height: 500px;
    top: -250px;
    right: -150px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -100px;
    animation: float 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 30%;
    animation: float 7s ease-in-out infinite;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.75rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    padding: 6rem 0;
}

.benefit-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    animation: slideInLeft 0.6s ease calc(var(--delay)) both;
}

.check-item i {
    font-size: 2rem;
    color: #10b981;
}

.check-item span {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-light);
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

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

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.badge-popular {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

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

.amount {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 1.125rem;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
}

.pricing-features i {
    color: #10b981;
    font-size: 1.25rem;
}

/* Premium Pricing Card Styles */
.premium-card {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    background-image: linear-gradient(white, white),
                      linear-gradient(135deg, var(--primary-color), var(--primary-light));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(37, 99, 235, 0.15);
}

.premium-badge {
    position: absolute;
    top: -16px;
    right: 30px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
    }
}

.plan-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.plan-icon i {
    font-size: 2.5rem;
    color: white;
}

.plan-name {
    font-size: 2rem;
    font-weight: 800;
    margin: 1rem 0 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-description {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.price-wrapper {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(96, 165, 250, 0.05));
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

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

.currency {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
}

.amount {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

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

.price-note {
    margin: 1rem 0 0.5rem;
}

.monthly-equivalent {
    font-size: 1rem;
    font-weight: 500;
}

.pricing-features-wrapper {
    margin: 2.5rem 0;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 16px;
}

.features-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px dashed var(--border-color);
}

.features-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.pricing-features.compact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features.compact li {
    padding: 0.625rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    font-size: 0.938rem;
}

.pricing-features.compact li i {
    color: #10b981;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.pricing-features.compact li strong {
    color: var(--primary-color);
}

.pricing-footer {
    margin-top: 2rem;
}

.pricing-footer .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.pricing-footer .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.3);
}

.guarantee-text {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.guarantee-text i {
    font-size: 1.125rem;
}

.value-props {
    padding-top: 2rem;
    border-top: 2px dashed var(--border-color);
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: white;
    transform: translateY(-4px);
}

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

.value-item p {
    font-size: 0.813rem;
    font-weight: 600;
    color: var(--text-dark);
}

.pricing-faq {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.pricing-faq h5 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
}

.faq-item {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.faq-item i {
    font-size: 2rem;
    display: block;
}

.faq-item h6 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 1rem 0 0.5rem;
}

.faq-item p {
    margin: 0;
}

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

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

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

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

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image {
        height: 400px;
        margin-top: 3rem;
    }

    .mockup-container {
        width: 300px;
        height: 400px;
    }

    .floating-card {
        font-size: 0.875rem;
        padding: 0.75rem 1rem;
    }

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

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

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

@media (max-width: 767px) {
    .hero-buttons {
        flex-direction: column;
    }

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

    .cta-form .input-group {
        flex-direction: column;
    }

    .cta-form button {
        justify-content: center;
    }
}

/* Header Navigation Buttons */
.nav-link-button {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-color);
    border-radius: var(--radius-md);
    color: var(--primary-color) !important;
    font-weight: var(--font-weight-medium);
    transition: all var(--transition-base);
}

.nav-link-button:hover {
    background-color: var(--primary-color);
    color: var(--text-white) !important;
    transform: translateY(-1px);
}

.navbar-nav.align-items-center {
    align-items: center;
}

@media (max-width: 991px) {
    .navbar-nav.align-items-center {
        align-items: flex-start;
    }

    .nav-link-button {
        margin-top: 0.5rem;
    }
}

/* ============================================
   Announcement Bar Styles
   ============================================ */

.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    padding: 0.75rem 0;
    z-index: 1050;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease-in-out;
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.announcement-icon {
    font-size: 1.25rem;
    animation: pulse-announcement 2s ease-in-out infinite;
}

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

.announcement-text {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    line-height: 1.4;
}

.announcement-text strong {
    font-weight: var(--font-weight-bold);
}

.announcement-text span {
    opacity: 0.95;
}

.announcement-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background-color: var(--text-white);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-semibold);
    font-size: 0.875rem;
    text-decoration: none;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.announcement-cta:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: var(--primary-dark);
}

.announcement-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--text-white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    flex-shrink: 0;
}

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

.announcement-close i {
    font-size: 0.75rem;
}

/* Navbar adjustment for announcement bar */
#mainNav {
    top: 50px;
    z-index: 1040;
}

/* Responsive */
@media (max-width: 768px) {
    .announcement-bar {
        padding: 0.6rem 0;
        position: fixed;
    }

    .announcement-content {
        gap: 0.75rem;
        justify-content: center;
    }

    .announcement-icon {
        font-size: 1rem;
        flex-shrink: 0;
    }

    .announcement-text {
        font-size: 0.8rem;
        flex: 1;
        min-width: 0;
    }

    .announcement-text strong {
        display: inline;
    }

    .announcement-text span {
        display: inline;
    }

    .announcement-cta {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
        flex-shrink: 0;
    }

    .announcement-close {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
    }

    #mainNav {
        top: 58px;
    }

    .hero-section {
        padding-top: 138px;
    }
}

@media (max-width: 480px) {
    .announcement-text strong,
    .announcement-text span {
        display: block;
        width: 100%;
    }

    .announcement-text span {
        margin-top: 0.25rem;
    }
}

/* Hero section adjustment */
.hero-section {
    padding-top: 130px;
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 145px;
    }
}

/* Extra Mobile Fixes for Announcement Bar */
@media (max-width: 576px) {
    .announcement-bar {
        padding: 0.5rem 0;
    }

    .announcement-content {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 0.5rem;
    }

    .announcement-icon {
        font-size: 0.9rem;
        order: 1;
    }

    .announcement-text {
        font-size: 0.75rem;
        order: 2;
        flex: 1;
        min-width: 0;
        line-height: 1.3;
    }

    .announcement-text strong {
        display: block;
        margin-bottom: 0.1rem;
    }

    .announcement-text span {
        display: block;
        font-size: 0.7rem;
        line-height: 1.2;
    }

    .announcement-cta {
        order: 3;
        padding: 0.35rem 0.75rem;
        font-size: 0.7rem;
        white-space: nowrap;
    }

    .announcement-cta i {
        display: none;
    }

    .announcement-close {
        order: 4;
        width: 26px;
        height: 26px;
    }

    #mainNav {
        top: 56px;
    }

    .hero-section {
        padding-top: 136px;
    }
}

/* Fix for very small screens */
@media (max-width: 360px) {
    .announcement-text span {
        font-size: 0.65rem;
    }

    .announcement-cta {
        padding: 0.3rem 0.6rem;
        font-size: 0.65rem;
    }
}

/* ============================================
   Footer Styles
   ============================================ */

.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #e2e8f0;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.3), transparent);
}

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

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

.footer p {
    color: #94a3b8;
    line-height: 1.6;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e2e8f0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.social-links i {
    font-size: 1.125rem;
}

.footer-title {
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

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

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

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

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

.footer .text-center p {
    color: #64748b;
    font-size: 0.875rem;
}

/* Fogeto Branding */
.fogeto-branding {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fogeto-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.fogeto-link:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.fogeto-logo {
    height: 32px;
    width: auto;
    transition: all 0.3s ease;
}

/* Footer Responsive */
@media (max-width: 991px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-brand {
        margin-bottom: 1.5rem;
    }

    .footer-title {
        margin-top: 1.5rem;
    }
}

@media (max-width: 767px) {
    .footer {
        padding: 2rem 0 1rem;
    }

    .social-links {
        margin-bottom: 2rem;
    }
    
    .fogeto-logo {
        height: 28px;
    }
}

/* ==================================================
   NEW MODERN LANDING PAGE STYLES
   ================================================== */

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    animation: fadeInDown 0.6s ease-out;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #2563eb, #7c3aed, #db2777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Button Glow Effect */
.btn-glow {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-glow:hover::before {
    left: 100%;
}

/* Hero Quick Features */
.hero-features-quick {
    animation: fadeInUp 0.8s ease-out;
}

.quick-feature {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Stat Icons in Hero */
.stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin: 0 auto 0.75rem;
}

/* Floating Cards Enhanced */
.floating-card {
    padding: 1.25rem 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.floating-card .card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.floating-card .card-content h6 {
    margin: 0 0 0.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
}

.floating-card .card-content p {
    margin: 0;
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Dashboard Preview in Mockup */
.dashboard-preview {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
}

.preview-sidebar {
    width: 60px;
    background: linear-gradient(180deg, #e0f2fe, #dbeafe);
    border-radius: 8px;
}

.preview-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.preview-card {
    height: 60px;
    background: linear-gradient(90deg, #f1f5f9, #e2e8f0);
    border-radius: 8px;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.mockup-title {
    flex: 1;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

/* Section Badges */
.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(96, 165, 250, 0.1));
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--primary-color);
}

/* Feature Cards Enhanced */
.feature-card-hover {
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
    border-color: var(--primary-light);
}

.feature-icon-wrapper {
    margin-bottom: 1.5rem;
}

.feature-icon.bg-gradient-primary {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.feature-icon.bg-gradient-info {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9);
}

.feature-icon.bg-gradient-success {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.feature-icon.bg-gradient-warning {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.feature-icon.bg-gradient-danger {
    background: linear-gradient(135deg, #ef4444, #f87171);
}

.feature-icon.bg-gradient-purple {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.feature-list li {
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-list li i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Mini Features Grid */
.additional-features {
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc, #eff6ff);
    border-radius: 24px;
}

.mini-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.mini-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.mini-feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.mini-feature span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Benefits Section - Modern Stats Grid */
.benefits-image-modern {
    padding: 2rem;
}

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

.stat-box {
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.stat-box .stat-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.stat-box.stat-primary .stat-icon {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.stat-box.stat-success .stat-icon {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.stat-box.stat-info .stat-icon {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9);
}

.stat-box.stat-warning .stat-icon {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.stat-box .stat-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.stat-box .stat-content p {
    margin: 0.25rem 0 0;
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Benefit Items Modern */
.benefit-item-modern {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.benefit-item-modern .benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.benefit-text p {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Testimonials */
.testimonial-card {
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: all 0.3s ease;
}

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

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1.125rem;
}

.testimonial-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0f2fe, #dbeafe);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2rem;
}

.author-info h6 {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-dark);
}

.author-info small {
    font-size: 0.8125rem;
    color: var(--text-light);
}

/* Pricing - Trial Banner */
.trial-banner {
    background: linear-gradient(135deg, #10b981, #34d399);
    padding: 1rem;
    border-radius: 16px 16px 0 0;
    margin: -2rem -2rem 1.5rem;
}

.trial-badge {
    text-align: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.trial-info .alert {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0) !important;
    color: #065f46;
    font-size: 0.9375rem;
}

.trial-features {
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
}

/* CTA Section Enhanced */
.cta-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    backdrop-filter: blur(10px);
}

.cta-feature-item {
    text-align: center;
}

.cta-feature-item i {
    display: block;
}

.cta-feature-item h6 {
    margin: 0.5rem 0 0.25rem;
    font-weight: 700;
}

.cta-trust {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    color: white;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.trust-divider {
    opacity: 0.5;
}

.cta-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.cta-shapes .shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-shapes .shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.cta-shapes .shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: 10%;
}

.cta-shapes .shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: -50px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ============================================
   MODERN HEADER / NAVBAR STYLES
   ============================================ */

/* Main Navigation */
#mainNav {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(37, 99, 235, 0.08);
}

#mainNav.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.99);
}

/* Brand Logo & Text */
.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    gap: 0.5rem;
}

.navbar-brand:hover {
    transform: translateY(-2px);
}

/* Brand Logo & Text */
.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    gap: 0.5rem;
}

.navbar-brand:hover {
    transform: translateY(-2px);
}

.brand-text {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(37, 99, 235, 0.1);
}

.brand-version {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.navbar-brand:hover .brand-version {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

/* Navigation Links */
.navbar-nav .nav-link {
    position: relative;
    font-weight: 600;
    font-size: 0.95rem;
    color: #475569;
    padding: 0.6rem 1rem;
    margin: 0 0.25rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link i {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.05);
    transform: translateY(-1px);
}

.navbar-nav .nav-link:hover i {
    opacity: 1;
    transform: scale(1.1);
}

/* Active Link State */
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:active {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
}

/* Action Buttons Container */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Navigation Buttons */
.btn-nav {
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.65rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    text-decoration: none;
}

/* Login Button (Outline) */
.btn-outline-primary.btn-nav {
    color: #2563eb;
    border-color: #2563eb;
    background: transparent;
}

.btn-outline-primary.btn-nav:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.btn-outline-primary.btn-nav:hover i {
    transform: translateX(-2px);
}

/* CTA Button (Primary) */
.btn-primary.btn-nav {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-color: transparent;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary.btn-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary.btn-nav:hover::before {
    left: 100%;
}

.btn-primary.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-primary.btn-nav:hover .bi-arrow-right {
    transform: translateX(3px);
}

.btn-nav i {
    transition: transform 0.3s ease;
}

/* Mobile Toggle Button */
.navbar-toggler {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    border-color: #2563eb;
    background: rgba(37, 99, 235, 0.05);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.15);
}

/* Mobile Menu Styles */
@media (max-width: 991px) {
    #mainNav {
        padding: 0.5rem 0;
    }
    
    .navbar-collapse {
        background: white;
        border-radius: 15px;
        margin-top: 1rem;
        padding: 1.5rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav {
        margin-bottom: 1rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0.25rem 0;
        padding: 0.75rem 1rem;
    }
    
    .navbar-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .btn-nav {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.5rem;
    }
    
    .brand-text {
        font-size: 1.35rem;
    }
    
    .brand-version {
        font-size: 0.65rem;
        padding: 0.15rem 0.5rem;
    }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991px) {
    .navbar-nav .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }
    
    .btn-nav {
        font-size: 0.85rem;
        padding: 0.6rem 1.25rem;
    }
}

/* Large Screen Optimization */
@media (min-width: 1200px) {
    #mainNav .container {
        max-width: 1200px;
    }
    
    .navbar-nav .nav-link {
        font-size: 1rem;
        padding: 0.65rem 1.25rem;
    }
    
    .btn-nav {
        font-size: 0.95rem;
        padding: 0.7rem 1.75rem;
    }
}

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

/* Fixed Navbar Spacing */
body {
    padding-top: 80px; /* Prevents content from hiding under fixed navbar */
}

/* ============================================
   HERO VISUAL - CARDS GRID
   ============================================ */

.hero-visual {
    padding: 2rem 0;
}

.hero-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    perspective: 1000px;
}

.hero-info-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-info-card:hover::before {
    opacity: 1;
}

.hero-info-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(37, 99, 235, 0.2);
}

.card-icon-modern {
    min-width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.hero-info-card:hover .card-icon-modern {
    transform: scale(1.1) rotate(5deg);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

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

.bg-gradient-info {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}

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

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

.bg-gradient-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.card-text h6 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.25rem 0;
}

.card-text p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

/* Mobile responsiveness for hero cards */
@media (max-width: 768px) {
    .hero-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-info-card {
        padding: 1.25rem;
    }
    
    .card-icon-modern {
        min-width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .card-text h6 {
        font-size: 0.95rem;
    }
    
    .card-text p {
        font-size: 0.8rem;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .hero-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* ============================================
   CTA SECTION ENHANCED
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 50%, #2563eb 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.cta-content p.lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons .btn-light {
    background: white;
    color: #2563eb;
    border: none;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-light:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.cta-buttons .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    font-weight: 700;
}

.cta-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    transform: translateY(-3px);
}

/* Responsive CTA */
@media (max-width: 768px) {
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p.lead {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0 !important;
    }
}

/* ============================================
   MINIMAL PRICING CARD
   ============================================ */

.pricing-card-minimal {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pricing-card-minimal:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.trial-banner-minimal {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 0.75rem 1.5rem;
    text-align: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
}

.trial-banner-minimal i {
    font-size: 1rem;
}

.pricing-body {
    padding: 2rem;
}

.price-section {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f1f5f9;
}

.price-section .price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.price-section .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: #64748b;
}

.price-section .amount {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}

.price-section .period {
    font-size: 1.25rem;
    color: #64748b;
    font-weight: 600;
}

.price-section .price-note {
    margin: 0;
}

.features-compact {
    padding: 1.5rem 0;
}

.feature-item-minimal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: #475569;
}

.feature-item-minimal i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-item-minimal span {
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-body {
        padding: 1.5rem;
    }
    
    .price-section .amount {
        font-size: 2.5rem;
    }
    
    .trial-banner-minimal {
        font-size: 0.8rem;
        padding: 0.65rem 1rem;
    }
    
    .feature-item-minimal {
        font-size: 0.875rem;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-box {
        padding: 1.5rem;
    }
    
    .benefit-item-modern {
        flex-direction: column;
        text-align: center;
    }
    
    .trust-badges {
        font-size: 0.75rem;
    }
}
