/* ====================================
   CSS Variables
   ==================================== */
:root {
    --primary-red: #dc143c;
    --primary-burgundy: #8b0000;
    --accent-red: #c92a2a;
    --white: #ffffff;
    --dark-text: #1a1a1a;
    --gray-text: #666666;
    --light-bg: #f8f9fa;
}

/* ====================================
   Global Styles
   ==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ====================================
   Navigation
   ==================================== */
.navbar {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Logo */
.logo {
    z-index: 1001;
}

.logo a {
    display: block;
}

.logo img {
    height: 65px;
    width: auto;
}

/* Navigation Menu - Centered Pill Container */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 10px 25px;
    border-radius: 50px;
    display: block;
}

.nav-menu a:hover {
    color: var(--primary-red);
    background: rgba(220, 20, 60, 0.05);
}

.nav-menu a.active {
    color: var(--primary-red);
}

.nav-buttons {
    display: flex;
    gap: 16px;
}

.btn-login,
.btn-signup {
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-login {
    color: var(--dark-text);
    font-weight: 500;
}

.btn-login:hover {
    background: var(--light-bg);
}

.btn-signup {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-burgundy) 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-text);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ====================================
   Products Hero Section
   ==================================== */
.products-hero {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-burgundy) 100%);
    padding: 160px 0 80px;
    text-align: center;
    color: var(--white);
    margin-top: 100px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    font-weight: 400;
}

/* ====================================
   Main Products Section
   ==================================== */
.main-products-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.section-intro {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray-text);
    max-width: 700px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Product Cards */
.product-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.product-card.featured {
    border: 3px solid var(--primary-red);
    box-shadow: 0 8px 30px rgba(220, 20, 60, 0.2);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-burgundy) 100%);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
    z-index: 10;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.product-card.featured:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 50px rgba(220, 20, 60, 0.25);
}

.product-icon-wrapper {
    margin-bottom: 24px;
}

.product-icon {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin: 0 auto;
}

.product-icon.icon-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.product-icon.icon-red {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-burgundy) 100%);
}

.product-icon.icon-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.product-icon.icon-orange {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.product-icon.icon-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.product-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 16px;
}

.product-description {
    font-size: 1rem;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 24px;
}

.product-features {
    list-style: none;
    margin-bottom: 28px;
}

.product-features li {
    padding: 8px 0;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.product-features i {
    color: var(--primary-red);
    font-size: 20px;
}

.btn-product {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-product:hover {
    background: var(--primary-red);
    color: var(--white);
}

.btn-product.btn-primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-burgundy) 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.btn-product.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

/* ====================================
   Business Section
   ==================================== */
.business-section {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-top: 12px;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.business-card {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.03) 0%, rgba(139, 0, 0, 0.05) 100%);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid rgba(220, 20, 60, 0.1);
}

.business-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(220, 20, 60, 0.15);
    border-color: var(--primary-red);
}

.business-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--white);
}

.business-icon-box.icon-red {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-burgundy) 100%);
}

.business-icon-box.icon-orange {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.business-icon-box.icon-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.business-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.business-description {
    font-size: 1rem;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.business-benefits {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.benefit-tag {
    padding: 6px 14px;
    background: rgba(220, 20, 60, 0.1);
    color: var(--primary-red);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ====================================
   Pricing Section
   ==================================== */
.pricing-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pricing-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary-red);
    box-shadow: 0 8px 30px rgba(220, 20, 60, 0.15);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-burgundy) 100%);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.plan-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.plan-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 16px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-red);
}

.period {
    font-size: 1.1rem;
    color: var(--gray-text);
}

.plan-description {
    font-size: 1rem;
    color: var(--gray-text);
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
}

.plan-features li {
    padding: 12px 0;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.plan-features i {
    color: var(--primary-red);
    font-size: 20px;
}

.btn-plan {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-plan:hover {
    background: var(--primary-red);
    color: var(--white);
}

.btn-plan.btn-primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-burgundy) 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.btn-plan.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

/* ====================================
   CTA Section
   ==================================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-burgundy) 100%);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--white);
    opacity: 0.95;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-primary {
    background: var(--white);
    color: var(--primary-red);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-cta-secondary:hover {
    background: var(--white);
    color: var(--primary-red);
}

/* ====================================
   Modals - Login & Registration
   ==================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-text);
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(220, 20, 60, 0.1);
    color: var(--primary-red);
    transform: rotate(90deg);
}

/* Modal Header */
.modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.modal-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.modal-subtitle {
    font-size: 1rem;
    color: var(--gray-text);
    margin: 0;
}

/* Modal Form */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal-form .form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-text);
}

.modal-form .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.form-icon-box.icon-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.form-icon-box.icon-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.form-icon-box.icon-orange {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.form-icon-box.icon-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.form-icon-box i {
    color: var(--white);
}

.form-input-modal {
    flex: 1;
    padding: 14px 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    transition: all 0.3s ease;
}

.form-input-modal[type="password"] {
    padding-right: 48px;
}

.form-input-modal:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 4px rgba(220, 20, 60, 0.1);
}

.form-input-modal::placeholder {
    color: rgba(0, 0, 0, 0.3);
}

.password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: var(--gray-text);
    transition: color 0.3s ease;
    z-index: 10;
}

.password-toggle:hover {
    color: var(--primary-red);
}

/* Form Row */
.form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--dark-text);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-red);
}

.checkbox-terms {
    margin-top: 8px;
}

.checkbox-terms a {
    color: var(--primary-red);
    text-decoration: none;
}

.checkbox-terms a:hover {
    text-decoration: underline;
}

.forgot-link {
    font-size: 0.9rem;
    color: var(--primary-red);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.forgot-link:hover {
    opacity: 0.8;
}

/* Modal Buttons */
.btn-modal-primary {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-burgundy) 100%);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.3);
}

.btn-modal-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(220, 20, 60, 0.4);
}

/* Modal Divider */
.modal-divider {
    position: relative;
    text-align: center;
    margin: 24px 0;
}

.modal-divider::before,
.modal-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.modal-divider::before {
    left: 0;
}

.modal-divider::after {
    right: 0;
}

.modal-divider span {
    display: inline-block;
    padding: 0 16px;
    background: var(--white);
    font-size: 0.9rem;
    color: var(--gray-text);
}

/* Social Login */
.social-login {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: var(--white);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-social:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    background: rgba(220, 20, 60, 0.05);
}

.btn-social i {
    font-size: 20px;
}

/* Modal Footer */
.modal-footer-text {
    text-align: center;
    font-size: 0.95rem;
    color: var(--gray-text);
    margin: 16px 0 0;
}

.modal-footer-text a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
}

.modal-footer-text a:hover {
    text-decoration: underline;
}

/* ====================================
   Footer
   ==================================== */
.footer {
    background: #1a1a1a;
    color: var(--white);
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr 1.5fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer About Column */
.footer-about {
    max-width: 320px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 16px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    font-size: 20px;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-red);
    transform: translateY(-2px);
}

/* Footer Columns */
.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    font-size: 20px;
    margin-top: 2px;
    color: var(--primary-red);
}

/* Newsletter */
.footer-newsletter {
    max-width: 300px;
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-red);
}

.newsletter-btn {
    width: 48px;
    height: 48px;
    background: var(--primary-red);
    border: none;
    border-radius: 8px;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--primary-burgundy);
    transform: translateX(3px);
}

/* Footer Bottom */
.footer-bottom {
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
}

.payment-methods {
    display: flex;
    gap: 12px;
    align-items: center;
}

.payment-icon {
    height: 28px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.payment-icon:hover {
    opacity: 1;
}

/* ====================================
   Responsive Design
   ==================================== */

/* Tablet */
@media (max-width: 968px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .business-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .navbar {
        top: 10px;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 20px;
        right: 20px;
        flex-direction: column;
        padding: 20px;
        border-radius: 20px;
        transform: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        padding: 12px 20px;
        text-align: center;
    }
    
    .nav-menu li {
        padding: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .business-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 40px;
    }
    
    .footer-about {
        max-width: 100%;
    }
    
    .footer-logo img {
        height: 45px;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 16px;
    }
    
    .footer-links {
        gap: 10px;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-contact {
        gap: 14px;
    }
    
    .footer-contact li {
        font-size: 0.9rem;
    }
    
    .footer-newsletter {
        max-width: 100%;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }
    
    .newsletter-btn {
        width: 100%;
        height: 48px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .copyright {
        font-size: 0.85rem;
    }
    
    .payment-methods {
        justify-content: center;
    }
    
    .payment-icon {
        height: 24px;
    }
    
    /* Modals Mobile */
    .modal-content {
        padding: 32px 24px;
        max-height: 95vh;
    }
    
    .modal-title {
        font-size: 1.6rem;
    }
    
    .modal-subtitle {
        font-size: 0.9rem;
    }
    
    .modal-form {
        gap: 16px;
    }
    
    .modal-form .input-wrapper {
        gap: 8px;
    }
    
    .form-icon-box {
        width: 44px;
        height: 44px;
    }
    
    .form-icon-box i {
        font-size: 18px !important;
    }
    
    .form-input-modal {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
    
    .form-input-modal[type="password"] {
        padding-right: 44px;
    }
    
    .password-toggle {
        right: 12px;
    }
    
    .form-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .social-login {
        grid-template-columns: 1fr;
    }
}