/* Base Styles & Variables */
:root {
    --primary-color: #98a29f;
    --primary-light: #98a29f;
    --primary-dark: #98a29f;
    --secondary-color: #0ea5e9;
    --dark-color: #111827;
    --gray-color: #6b7280;
    --light-gray: #f3f4f6;
    --light-color: #ffffff;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;
    --font-main: 'Inter', sans-serif;
}

/* General Styles */
body {
    font-family: var(--font-main);
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light-color);
    padding-top: 80px; /* Für die fixierte Navbar */
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

.btn {
    border-radius: var(--border-radius);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

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

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

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.btn-outline-secondary {
    color: var(--dark-color);
    border-color: var(--gray-color);
}

.btn-outline-secondary:hover, .btn-outline-secondary:focus {
    background-color: var(--gray-color);
    color: var(--light-color);
    border-color: var(--gray-color);
}

.section {
    padding: 0;
    position: relative;
}

.section-header {
    margin-bottom: 0px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: var(--gray-color);
    max-width: 800px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1030;
    transition: all 0.3s ease-in-out;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
}


/* 3D Perspective Container */
.perspective-container {
    perspective: 1500px;
    perspective-origin: 50% 50%;
    padding: 20px 0;
    overflow: visible;
}

.perspective-container img {
    border-radius: calc(var(--border-radius) * 2);
    overflow: hidden;
}

.rotate-on-scroll {
    transform-style: preserve-3d;
    transform: rotateX(90deg);
    opacity: 0;
    will-change: transform, opacity;
    transform-origin: center center;
    backface-visibility: hidden;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px) saturate(180%);
    -webkit-backdrop-filter: blur(8px) saturate(180%);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Transitions added via JS after initial load */
/* Scrolled state */

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

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

.navbar-brand {
    display: flex;
    align-items: flex-end;
    line-height: 1;
}

.navbar-brand img.logo {
    height: 40px;
    width: 40px;
    margin-right: 0.5rem;
}

.navbar-brand span {
    margin-bottom: -2px;
}

/* Navigation elements */
.nav-logo, .nav-cta {
    position: relative;
    /* Will only apply transitions once navbar-transition class is added by JS */
    transform: translateX(0);
    opacity: 1;
}

.navbar.navbar-transition .nav-logo,
.navbar.navbar-transition .nav-cta {
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.navbar-nav {
    margin: 0 auto;
}

.navbar-nav.center-menu {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

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

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

.navbar-nav .btn {
    margin-left: 0.5rem;
}

/* Move logo and CTA when scrolled */
.navbar.scrolled .nav-logo {
    transform: translateX(70px);
    margin-right: 0;
}

.navbar.scrolled .nav-cta {
    transform: translateX(-70px);
    margin-left: 0;
}

/* Ensure center menu stays in place */
.navbar.scrolled .navbar-nav.center-menu {
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Mobile menu adjustments */
@media (max-width: 991px) {
    .navbar-nav.center-menu {
        margin: 0;
    }

    .navbar.scrolled .nav-logo,
    .navbar.scrolled .nav-cta {
        transform: none;
        margin: 0;
    }

    .nav-cta {
        margin-top: 1rem;
    }
}

/* Hero Section */
.hero-section {
    padding: 120px 0 100px; /* Reduced top padding since we have padding-top on body */
    background: #e0f2fe;
    position: relative;
    overflow: hidden;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.hero-text p.lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--gray-color);
}

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

.hero-stats {
    display: flex;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 0 1rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--gray-color);
    font-size: 1rem;
}

.hero-image {
    position: relative;
}

.dashboard-mockup {
    background-color: var(--light-color);
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.browser-header {
    background-color: #f1f5f9;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
}

.browser-actions {
    display: flex;
    margin-right: 1rem;
}

.browser-action {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 6px;
}

.browser-action:nth-child(1) {
    background-color: #ef4444;
}

.browser-action:nth-child(2) {
    background-color: #f59e0b;
}

.browser-action:nth-child(3) {
    background-color: #10b981;
}

.browser-address {
    flex: 1;
}

.address-bar {
    height: 24px;
    background-color: #e2e8f0;
    border-radius: 4px;
}

.browser-content {
    padding: 1.5rem;
    min-height: 300px;
}

.dashboard-element {
    background-color: #f1f5f9;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.dashboard-header {
    height: 40px;
}

.dashboard-row {
    display: flex;
    gap: 1rem;
}

.dashboard-sidebar {
    width: 25%;
    height: 160px;
}

.dashboard-main {
    width: 75%;
    height: 160px;
}

.dashboard-stats {
    height: 80px;
}

.hero-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-shape svg {
    width: 100%;
    height: 70px;
}

/* Features Section */
.features-section {
    background-color: var(--light-color);
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-item {
    text-align: center;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    background-color: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    margin-bottom: 2rem;
    border: 1px solid #e5e7eb;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    margin-bottom: 2rem;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--primary-color);
}

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

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--gray-color);
}

.feature-highlight {
    margin-top: 4rem;
    padding: 3rem;
    background-color: #f8fafc;
    border-radius: var(--border-radius);
}

.feature-mockup {
    position: relative;
    height: 350px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.mockup-element {
    position: absolute;
    border-radius: 4px;
}

.mockup-graph {
    top: 30px;
    left: 30px;
    width: 70%;
    height: 180px;
    background-color: rgba(79, 70, 229, 0.05);
}

.mockup-dots {
    bottom: 30px;
    left: 30px;
    width: 140px;
    height: 90px;
    background-color: rgba(14, 165, 233, 0.05);
}

.mockup-line {
    bottom: 30px;
    left: 190px;
    width: 140px;
    height: 90px;
    background-color: rgba(20, 184, 166, 0.05);
}

.mockup-circle {
    top: 30px;
    right: 30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: rgba(249, 115, 22, 0.05);
}

.feature-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feature-content p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

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

.feature-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: var(--success-color);
    margin-right: 0.75rem;
}

/* Pricing Section */
.pricing-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.toggle-label {
    font-weight: 500;
    cursor: pointer;
}

.toggle-label.active {
    color: var(--primary-color);
}

.discount-badge {
    display: inline-block;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    margin-left: 0.5rem;
}

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

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

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e2e8f0;
    transition: var(--transition);
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: var(--transition);
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 1rem;
    max-width: 100%;
    width: 100%;
}

@media (max-width: 991.98px) {
    .pricing-plans {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

.pricing-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    background-color: #e0f2fe;
    transform: scale(1.05);
}

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

.pricing-card.starter,
.pricing-card.enterprise {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pricing-card.starter {
    transform: rotate(0deg) translateX(0);
    transform-origin: center;
    opacity: 1;
}

.pricing-card.enterprise {
    transform: rotate(0deg) translateX(0);
    transform-origin: center;
    opacity: 1;
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: -2rem;
    background-color: var(--primary-color);
    color: var(--light-color);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 2rem;
    transform: rotate(45deg);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.currency {
    font-size: 1.5rem;
    margin-right: 0.25rem;
    vertical-align: top;
}

.period {
    font-size: 1rem;
    color: var(--gray-color);
    font-weight: 400;
}

.amount.yearly {
    display: none;
}

.pricing-header p {
    color: var(--gray-color);
}

.pricing-features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

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

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    margin-right: 0.75rem;
    font-size: 1rem;
}

.pricing-features li i.fa-check {
    color: var(--success-color);
}

.pricing-features li i.fa-times {
    color: var(--danger-color);
}

.pricing-features li.disabled {
    color: var(--gray-color);
    text-decoration: line-through;
    opacity: 0.7;
}

.pricing-footer {
    text-align: center;
}

.btn-block {
    display: block;
    width: 100%;
}

.pricing-note {
    margin-top: 3rem;
    color: var(--gray-color);
}

.pricing-note a {
    color: var(--primary-color);
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--light-color);
    padding: 100px 0;
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 3rem;
    margin: 1rem;
}

.testimonial-stars {
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    color: #f59e0b;
    margin-right: 0.25rem;
    font-size: 1.25rem;
}

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

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

.author-avatar {
    width: 60px;
    height: 60px;
    margin-right: 1rem;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
}

.author-info h5 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--gray-color);
    margin: 0;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.carousel-control-prev, .carousel-control-next {
    position: relative;
    width: auto;
    padding: 0.5rem 1rem;
    color: var(--dark-color);
    opacity: 1;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
    color: var(--primary-color);
}

.carousel-indicators {
    position: relative;
    margin: 0 1rem;
    padding: 0;
    justify-content: center;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #e2e8f0;
    margin: 0 0.25rem;
    opacity: 1;
}

.carousel-indicators button.active {
    background-color: var(--primary-color);
}

.client-logos {
    margin-top: 4rem;
}

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

.client-logo {
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-placeholder {
    background-color: #f1f5f9;
    color: var(--gray-color);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    background-color: #f8fafc;
    padding: 100px 0;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1rem;
    border: none;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    font-weight: 600;
    padding: 1.5rem;
    background-color: var(--light-color);
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: var(--light-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%232c2d2e' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%234f46e5' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 11l6-6 6 6'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 0 1.5rem 1.5rem;
}

.accordion-body p {
    color: var(--gray-color);
    margin-bottom: 0;
}

.faq-cta {
    margin-top: 3rem;
}

.faq-cta p {
    color: var(--gray-color);
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    background-color: var(--light-color);
    padding: 100px 0;
}

.contact-info {
    padding: 2rem;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: var(--border-radius);
    height: 100%;
}

.contact-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    opacity: 0.8;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.contact-item .icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.contact-item .icon i {
    font-size: 1.25rem;
}

.contact-item .info h5 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-item .info p {
    margin: 0;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    transition: var(--transition);
}

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

.contact-form {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
}

.form-control::placeholder {
    color: #e7e7e8;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(79, 70, 229, 0.25);
}

/* Footer */
.footer-section {
    background-color: #111827;
    color: var(--light-color);
    padding: 80px 0 20px;
}

.footer-widget {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo img.logo {
    height: 40px;
    width: 40px;
    margin-right: 0.5rem;
    /* Das Filter für SVG-Logos entfernt, da wir ein PNG mit eigener Farbgebung haben */
}

.footer-logo span {
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-widget p {
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

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

.footer-social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    transition: var(--transition);
}

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

.footer-widget h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

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

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

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--light-color);
    padding-left: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 3rem;
}

.copyright {
    opacity: 0.7;
    margin: 0;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    margin-left: 1.5rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--light-color);
}

/* Flash Messages */
.flash-messages {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
}

.alert {
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.alert-success {
    background-color: #d1fae5;
    border-color: #a7f3d0;
    color: #065f46;
}

.alert-error {
    background-color: #fee2e2;
    border-color: #fecaca;
    color: #b91c1c;
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .hero-text h1 {
        font-size: 3rem;
    }

    .feature-mockup {
        height: 300px;
    }
}

@media (max-width: 991.98px) {
    .section {
        padding: 80px 0;
    }

    .hero-section {
        padding: 150px 0 80px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

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

    .feature-mockup {
        margin-bottom: 2rem;
    }

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

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

@media (max-width: 767.98px) {
    .section {
        padding: 60px 0;
    }

    .hero-section {
        padding: 120px 0 60px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

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

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .contact-info {
        margin-bottom: 2rem;
    }
}

@media (max-width: 575.98px) {
    .section {
        padding: 50px 0;
    }

    .hero-section {
        padding: 100px 0 50px;
    }

    .hero-text h1 {
        font-size: 1.75rem;
    }

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

    .section-description {
        font-size: 1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .footer-bottom-links {
        text-align: center;
        margin-top: 1rem;
    }

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

@media (min-width: 768px) {
  .pricing-plans .col-md-4 {
    flex: 0 0 auto;
    width: 100%;
  }
}