html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f7f8f9;
    margin: 0;
}

/* ========================================
   ANNOUNCEMENT BANNER STYLES
   ======================================== */

.announcement-banner {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    padding: 0.75rem 1rem;
    position: relative;
    z-index: 1001;
}

.announcement-container {
    max-width: 75rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.announcement-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.625rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(10px);
}

.announcement-text {
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.4;
}

.announcement-text strong {
    font-weight: 700;
}

.announcement-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.2s;
    backdrop-filter: blur(10px);
}

.announcement-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(2px);
}

.announcement-link i {
    transition: transform 0.2s;
}

.announcement-link:hover i {
    transform: translateX(2px);
}

/* Responsive Announcement Banner */
@media (max-width: 768px) {
    .announcement-banner {
        padding: 0.625rem 1rem;
    }

    .announcement-container {
        gap: 0.75rem;
        flex-direction: column;
        text-align: center;
    }

    .announcement-text {
        font-size: 0.875rem;
    }

    .announcement-link {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .announcement-banner {
        padding: 0.75rem 0.75rem;
    }

    .announcement-text {
        font-size: 0.8125rem;
    }

    .announcement-badge {
        font-size: 0.6875rem;
        padding: 0.1875rem 0.5rem;
    }

    .announcement-link {
        font-size: 0.8125rem;
        padding: 0.5rem 0.875rem;
    }
}

/* ========================================
   NAVBAR STYLES
   ======================================== */

/* Navbar Outer Container */
.navbar-outer {
    position: sticky;
    top: 20px;
    max-width: 75rem;
    margin: 1.5rem auto 0;
    padding: 0;
    z-index: 1000;
}

.navbar-outer.scrolled {
    margin-top: 0.5rem;
}

.navbar-outer.scrolled .navbar-wrapper {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0s;
}

/* Navbar Wrapper */
.navbar-wrapper {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: 4rem;
    transition: border-radius 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1000;
}

.navbar-wrapper.mega-menu-open {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: none !important;
}

.navbar-wrapper.mega-menu-open .navbar-container {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

@media (min-width: 1280px) {
    .navbar-wrapper {
        height: 4.75rem;
    }
}

/* Navbar Container */
.navbar-container {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 2rem;
    background-color: #ffffff;
    border-radius: 12px;
}

/* Logo */
.logo-link {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 2rem;
    width: auto;
    object-fit: contain;
}

@media (min-width: 768px) {
    .logo-image {
        height: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .logo-image {
        height: 3rem;
    }
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
    flex: 1;
    margin-left: 2rem;
    color: #1f2937;
    font-size: 14px;
    font-weight: 400;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: block;
    }
}

@media (min-width: 1024px) {
    .desktop-nav {
        margin-left: 5rem;
        font-size: 15px;
    }
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    list-style: none;
}

.nav-item {
    flex-shrink: 0;
}

.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.75rem 0.5rem;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.nav-link:hover {
    background-color: #f5f5f5;
}

.product-link {
    gap: 0.75rem;
}

.chevron-icon {
    width: 0.625rem;
    flex-shrink: 0;
    color: #1f2937;
}

/* Auth Buttons */
.auth-buttons {
    display: none;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
}

@media (min-width: 768px) {
    .auth-buttons {
        display: flex;
    }
}

.login-btn,
.register-btn,
.dashboard-btn {
    text-decoration: none;
}

.login-btn {
    padding: 0.5rem 1.25rem;
    background: transparent;
    color: #333;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.login-btn:hover {
    background-color: #f5f5f5;
}

.register-btn {
    padding: 0.5rem 1.25rem;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.register-btn:hover {
    background-color: #1d4ed8;
}

.dashboard-btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background-color: #4285f4;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.dashboard-btn:hover {
    background-color: #3367d6;
}

@media (min-width: 1024px) {
    .login-btn,
    .register-btn,
    .dashboard-btn {
        font-size: 15px;
        padding: 0.625rem 1.5rem;
    }
}

/* Language Navigation in Nav Items */
.language-nav-item {
    position: relative;
}

.language-nav-item .language-btn {
    display: flex;
    align-items: center;
    padding: 0.75rem 0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    color: inherit;
    border-radius: 6px;
    transition: all 0.2s;
}

@media (min-width: 1024px) {
    .language-nav-item .language-btn {
        font-size: 15px;
    }
}

.language-nav-item .language-btn:hover {
    background-color: #f5f5f5;
}

.language-text {
    color: inherit;
}

.language-nav-item .language-btn .chevron-icon {
    margin-left: 0.25rem;
}

.flag-icon {
    width: 1.25rem;
    height: auto;
    flex-shrink: 0;
    border-radius: 2px;
    margin-right: 0.5rem;
}

.language-nav-item .language-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 10rem;
    background-color: #ffffff;
    padding: 0.5rem;
    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);
    list-style: none;
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.2s;
}

.language-nav-item .language-menu.active {
    display: block;
    opacity: 1;
}

.language-menu li {
    margin: 0.25rem 0;
}

.language-option {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    color: #1f2937;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    transition: background-color 0.2s;
}

.language-option:hover {
    background-color: #f5f5f5;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: block;
    padding: 0.5rem;
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.hamburger-icon {
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    color: #1f2937;
}

.close-icon {
    display: none;
    width: 2rem;
    height: 2rem;
    margin-right: -0.25rem;
    color: #1f2937;
}

.mobile-menu-btn.active .hamburger-icon {
    display: none;
}

.mobile-menu-btn.active .close-icon {
    display: block;
}

.mobile-menu-btn.auto-margin {
    margin-left: auto;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background-color: #ffffff;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.mobile-menu.active {
    display: block;
    max-height: 600px;
}

.mobile-nav {
    padding: 1rem;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.mobile-nav-item {
    border-bottom: 1px solid #f0f0f0;
}

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

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 0.5rem;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    transition: background-color 0.2s;
}

.mobile-nav-link:active {
    background-color: #f5f5f5;
}

.mobile-nav-link .chevron-icon {
    transition: transform 0.3s;
}

.mobile-nav-item.active .chevron-icon {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f9fafb;
    border-radius: 8px;
    margin: 0.5rem 0;
}

.mobile-submenu.active {
    max-height: 400px;
}

.mobile-submenu-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: #666;
    text-decoration: none;
    font-size: 15px;
    transition: background-color 0.2s;
}

.mobile-submenu-item:active {
    background-color: #f0f0f0;
}

.mobile-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
}

.mobile-login-btn,
.mobile-register-btn,
.mobile-dashboard-btn {
    text-decoration: none;
    display: block;
}

.mobile-login-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: #333;
    border: 1px solid #d4d4d4;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.mobile-login-btn:active {
    background-color: #f5f5f5;
}

.mobile-register-btn {
    padding: 0.75rem 1.5rem;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.mobile-register-btn:active {
    background-color: #1d4ed8;
}

.mobile-dashboard-btn {
    padding: 0.75rem 1.5rem;
    background-color: #4285f4;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.mobile-dashboard-btn:active {
    background-color: #3367d6;
}

@media (min-width: 768px) {
    .mobile-menu {
        display: none !important;
    }
}

/* Features Mega Menu */
.features-mega-menu {
    display: none;
    position: absolute;
    top: 4rem;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 999;
    margin-top: -1px;
    padding-top: 1px;
}

@media (min-width: 1280px) {
    .features-mega-menu {
        top: 4.75rem;
    }
}

.features-mega-menu.active {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-container {
    padding: 2.5rem 2rem;
    padding-top: 1.5rem;
}

.mega-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.mega-menu-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.view-all {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.view-all:hover {
    color: #000;
}

/* Services Grid */
.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.5rem;
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 8px;
    transition: background-color 0.2s;
    cursor: pointer;
}

.mega-menu-column:hover {
    background-color: #f9fafb;
}

.column-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.25rem;
}

.column-icon svg {
    color: #666;
}

.mega-menu-column h4 {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
}

.mega-menu-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mega-menu-column ul li a {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
}

.mega-menu-column ul li a:hover {
    color: #000;
}

/* Responsive Services Grid */
@media (max-width: 1024px) {
    .mega-menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar-outer {
        margin: 1rem;
    }

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

    .mega-menu-container {
        padding: 1.5rem 1rem;
    }

    .navbar-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .mega-menu-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   HERO SECTION STYLES
   ======================================== */

/* Hero Section */
.hero-section {
    background-color: #f7f8f9;
    padding: 5rem 2rem;
    padding-bottom: 0px !important;
    min-height: calc(100vh - 8rem);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 85rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

/* Left Side - Content */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
    max-width: 56rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid #86efac;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #166534;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.underline-text {
    position: relative;
    display: inline-block;
}

.underline-text::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 0;
    right: 0;
    height: 0.5rem;
    background-color: #2563eb;
    opacity: 0.3;
    border-radius: 2px;
    z-index: -1;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4b5563;
    max-width: 48rem;
}

/* Input Container */
.hero-input-wrapper {
    margin-top: 1rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.input-container {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    max-width: 48rem;
    width: 100%;
    transition: box-shadow 0.3s;
}

.input-container:focus-within {
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.1), 0 4px 6px -2px rgba(37, 99, 235, 0.05);
}

.input-row {
    display: flex;
    align-items: center;
    flex: 1;
}

.input-icon {
    color: #9ca3af;
    flex-shrink: 0;
    margin-left: 0.75rem;
}

.hero-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    color: #1f2937;
    background-color: transparent;
}

.hero-input::placeholder {
    color: #9ca3af;
}

/* Remove autofill/autocomplete background color */
.hero-input:-webkit-autofill,
.hero-input:-webkit-autofill:hover,
.hero-input:-webkit-autofill:focus,
.hero-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    box-shadow: 0 0 0 30px white inset !important;
    -webkit-text-fill-color: #1f2937 !important;
}

.hero-input:focus {
    background-color: transparent;
}

.check-btn {
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    flex-shrink: 0;
}

.check-btn:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
}

.check-btn:active {
    transform: translateY(0);
}

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-rating-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.star-icon {
    color: #fbbf24;
}

.rating-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-left: 0.5rem;
}

.rating-text {
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
}

.stat-divider {
    width: 1px;
    height: 2.5rem;
    background-color: #e5e7eb;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Right Side - Screenshot Placeholder */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 75rem;
    padding: 0.5rem 0.5rem 0 0.5rem;
    background: linear-gradient(145deg, #e8e9eb 0%, #f0f1f2 50%, #e8e9eb 100%);
    border-radius: 12px 12px 0 0;
    box-shadow:
        0 30px 60px -12px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    -webkit-mask: linear-gradient(to bottom, #000 0%, #000 70%, transparent 100%);
    mask: linear-gradient(to bottom, #000 0%, #000 70%, transparent 100%);
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 70%;
    border-radius: 12px 12px 0 0;
    padding: 0.5px;
    background: linear-gradient(145deg, rgba(255,255,255,0.6), rgba(0,0,0,0.03));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.report-screenshot {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.1);
    -webkit-mask: linear-gradient(to bottom, #000 0%, #000 70%, transparent 100%);
    mask: linear-gradient(to bottom, #000 0%, #000 70%, transparent 100%);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 1rem;
    }

    .hero-container {
        gap: 2.5rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }

    .input-container {
        padding: 0.375rem;
    }

    .input-icon {
        margin-left: 0.5rem;
        width: 18px;
        height: 18px;
    }

    .hero-input {
        padding: 0.625rem 0.75rem;
        font-size: 0.9375rem;
    }

    .check-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        width: 100%;
    }

    .stat-item {
        width: 100%;
        max-width: 16rem;
    }

    .stat-divider {
        display: none;
    }

    .stat-value {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.8125rem;
    }

    .rating-text {
        font-size: 0.8125rem;
    }

    .star-icon {
        width: 18px;
        height: 18px;
    }

    .rating-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .navbar-outer {
        margin: 0.75rem;
    }

    .hero-section {
        padding: 1.5rem 0.75rem;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 0.9375rem;
    }

    .hero-input-wrapper {
        width: 100%;
        padding: 0 0.5rem;
    }

    .input-container {
        flex-direction: column;
        align-items: stretch;
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .input-icon {
        margin-left: 0.5rem;
        width: 18px;
        height: 18px;
    }

    .hero-input {
        padding: 0.75rem 1rem;
        font-size: 0.9375rem;
    }

    .check-btn {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.9375rem;
        justify-content: center;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .rating-text {
        font-size: 0.75rem;
    }

    .star-icon {
        width: 16px;
        height: 16px;
    }

    .rating-number {
        font-size: 1.25rem;
    }

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

/* ========================================
   HOW IT WORKS SECTION STYLES
   ======================================== */

/* How It Works Section */
.how-it-works-section {
    background-color: #f9fafb;
    padding: 6rem 2rem;
    position: relative;
}

.how-it-works-container {
    max-width: 75rem;
    margin: 0 auto;
}

/* How It Works Header */
.how-it-works-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.how-it-works-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.how-it-works-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4b5563;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

/* Bento Grid Items Layout */
.bento-item-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.bento-item-2 {
    grid-column: 2 / 4;
    grid-row: 1 / 2;
}

.bento-item-3 {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
}

.bento-item-4 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

/* Step Card */
.step-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2.5rem 2rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    border-color: #d1d5db;
}

/* Featured Card (Step 2) */
.bento-featured {
    background: #ffffff;
    border: 1px solid #e5e7eb;
}

.bento-featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    border-color: #d1d5db;
}

.step-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 700;
    z-index: 2;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.step-icon {
    width: 4rem;
    height: 4rem;
    background-color: #f5f5f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    flex-shrink: 0;
}

.step-icon-large {
    width: 5rem;
    height: 5rem;
    background-color: #f5f5f5;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    flex-shrink: 0;
}

.step-text {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.step-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;
}

.step-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}

/* Step Stats (for featured card) */
.step-stats {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #374151;
}

.stat-badge i {
    color: #2563eb;
    flex-shrink: 0;
}

/* How It Works CTA */
.how-it-works-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 3rem 2rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
}

.cta-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.cta-button:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
}

.cta-button:active {
    transform: translateY(0);
}

/* Responsive How It Works Section */
@media (max-width: 1024px) {
    .how-it-works-section {
        padding: 5rem 2rem;
    }

    .how-it-works-header {
        margin-bottom: 3rem;
    }

    .how-it-works-title {
        font-size: 2rem;
    }

    .how-it-works-subtitle {
        font-size: 1rem;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto auto;
        gap: 1.25rem;
        margin-bottom: 3rem;
    }

    .bento-item-1 {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .bento-item-2 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .bento-item-3 {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .bento-item-4 {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .step-card {
        padding: 2rem 1.5rem;
    }

    .step-icon {
        width: 3.5rem;
        height: 3.5rem;
    }

    .step-icon-large {
        width: 4rem;
        height: 4rem;
    }

    .step-icon i,
    .step-icon-large i {
        width: 28px;
        height: 28px;
    }

    .step-title {
        font-size: 1.25rem;
    }

    .step-description {
        font-size: 0.875rem;
    }

    .how-it-works-cta {
        padding: 2.5rem 1.5rem;
    }

    .cta-text {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .how-it-works-section {
        padding: 4rem 1.5rem;
    }

    .how-it-works-header {
        margin-bottom: 2.5rem;
    }

    .how-it-works-title {
        font-size: 1.75rem;
    }

    .how-it-works-subtitle {
        font-size: 0.9375rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .bento-item-1,
    .bento-item-2,
    .bento-item-3,
    .bento-item-4 {
        grid-column: 1 / 2;
    }

    .bento-item-1 {
        grid-row: 1 / 2;
    }

    .bento-item-2 {
        grid-row: 2 / 3;
    }

    .bento-item-3 {
        grid-row: 3 / 4;
    }

    .bento-item-4 {
        grid-row: 4 / 5;
    }

    .step-card {
        padding: 1.75rem 1.5rem;
    }

    .step-icon {
        width: 3rem;
        height: 3rem;
    }

    .step-icon-large {
        width: 3.5rem;
        height: 3.5rem;
    }

    .step-icon i,
    .step-icon-large i {
        width: 24px;
        height: 24px;
    }

    .step-title {
        font-size: 1.125rem;
    }

    .step-description {
        font-size: 0.875rem;
    }

    .how-it-works-cta {
        padding: 2rem 1.25rem;
        gap: 1.25rem;
    }

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

    .cta-button {
        padding: 0.75rem 1.75rem;
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .how-it-works-section {
        padding: 3rem 1rem;
    }

    .how-it-works-header {
        margin-bottom: 2rem;
    }

    .how-it-works-title {
        font-size: 1.5rem;
    }

    .how-it-works-subtitle {
        font-size: 0.875rem;
    }

    .bento-grid {
        gap: 1.25rem;
        margin-bottom: 2rem;
    }

    .step-card {
        padding: 1.5rem 1.25rem;
    }

    .step-number {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 1rem;
        top: 1.25rem;
        right: 1.25rem;
    }

    .step-content {
        gap: 1.25rem;
    }

    .step-icon {
        width: 2.75rem;
        height: 2.75rem;
    }

    .step-icon-large {
        width: 3rem;
        height: 3rem;
    }

    .step-icon i {
        width: 20px;
        height: 20px;
    }

    .step-icon-large i {
        width: 24px;
        height: 24px;
    }

    .step-title {
        font-size: 1rem;
    }

    .step-description {
        font-size: 0.8125rem;
    }

    .stat-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.625rem;
    }

    .stat-badge i {
        width: 14px;
        height: 14px;
    }

    .how-it-works-cta {
        padding: 1.5rem 1rem;
        gap: 1rem;
    }

    .cta-text {
        font-size: 0.9375rem;
    }

    .cta-button {
        width: 100%;
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
        justify-content: center;
    }
}

/* ========================================
   FEATURES SECTION STYLES
   ======================================== */

/* Features Section */
.features-section {
    background-color: #ffffff;
    padding: 6rem 2rem;
    position: relative;
}

.features-container {
    max-width: 75rem;
    margin: 0 auto;
}

/* Features Header */
.features-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.features-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4b5563;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Feature Card */
.feature-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    border-color: #d1d5db;
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: #2563eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.feature-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}

/* Responsive Features Section */
@media (max-width: 1024px) {
    .features-section {
        padding: 5rem 2rem;
    }

    .features-header {
        margin-bottom: 3rem;
    }

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

    .features-subtitle {
        font-size: 1rem;
    }

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

    .feature-card {
        padding: 1.75rem;
    }

    .feature-icon {
        width: 3rem;
        height: 3rem;
        margin-bottom: 1.25rem;
    }

    .feature-icon i {
        width: 24px;
        height: 24px;
    }

    .feature-title {
        font-size: 1.125rem;
    }

    .feature-description {
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 4rem 1.5rem;
    }

    .features-header {
        margin-bottom: 2.5rem;
    }

    .features-title {
        font-size: 1.75rem;
    }

    .features-subtitle {
        font-size: 0.9375rem;
    }

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

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 2.75rem;
        height: 2.75rem;
        margin-bottom: 1rem;
    }

    .feature-icon i {
        width: 22px;
        height: 22px;
    }

    .feature-title {
        font-size: 1.0625rem;
    }

    .feature-description {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 3rem 1rem;
    }

    .features-header {
        margin-bottom: 2rem;
    }

    .features-title {
        font-size: 1.5rem;
    }

    .features-subtitle {
        font-size: 0.875rem;
    }

    .features-grid {
        gap: 1rem;
    }

    .feature-card {
        padding: 1.25rem;
    }

    .feature-icon {
        width: 2.5rem;
        height: 2.5rem;
        margin-bottom: 0.875rem;
    }

    .feature-icon i {
        width: 20px;
        height: 20px;
    }

    .feature-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .feature-description {
        font-size: 0.8125rem;
    }
}

/* ========================================
   TESTIMONIALS SECTION STYLES
   ======================================== */

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 6rem 2rem;
    position: relative;
}

.testimonials-container {
    max-width: 75rem;
    margin: 0 auto;
}

/* Testimonials Header */
.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.testimonials-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4b5563;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Testimonial Card */
.testimonial-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
}

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

.testimonial-rating .star-icon {
    color: #fbbf24;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1.5rem;
    flex: 1;
}

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

.author-avatar {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.author-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
}

.author-title {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.3;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 2rem;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #1a1a1a;
}

.trust-badge-item i {
    color: #2563eb;
    flex-shrink: 0;
}

.trust-badge-item span {
    font-size: 0.9375rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Responsive Testimonials Section */
@media (max-width: 1024px) {
    .testimonials-section {
        padding: 5rem 2rem;
    }

    .testimonials-header {
        margin-bottom: 3rem;
    }

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

    .testimonials-subtitle {
        font-size: 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .testimonial-card {
        padding: 1.75rem;
    }

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

    .trust-badges {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 1.5rem;
    }

    .testimonials-header {
        margin-bottom: 2.5rem;
    }

    .testimonials-title {
        font-size: 1.75rem;
    }

    .testimonials-subtitle {
        font-size: 0.9375rem;
    }

    .testimonials-grid {
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
    }

    .author-avatar {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 0.8125rem;
    }

    .trust-badges {
        gap: 1.5rem;
        flex-direction: column;
        padding: 1.5rem;
    }

    .trust-badge-item {
        gap: 0.625rem;
    }

    .trust-badge-item span {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 3rem 1rem;
    }

    .testimonials-header {
        margin-bottom: 2rem;
    }

    .testimonials-title {
        font-size: 1.5rem;
    }

    .testimonials-subtitle {
        font-size: 0.875rem;
    }

    .testimonials-grid {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .testimonial-rating {
        margin-bottom: 1rem;
    }

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

    .author-avatar {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 0.75rem;
    }

    .author-name {
        font-size: 0.875rem;
    }

    .author-title {
        font-size: 0.8125rem;
    }

    .trust-badges {
        gap: 1rem;
        padding: 1.25rem;
    }

    .trust-badge-item i {
        width: 20px;
        height: 20px;
    }

    .trust-badge-item span {
        font-size: 0.8125rem;
    }
}

/* ========================================
   PRICING SECTION STYLES
   ======================================== */

/* Pricing Section */
.pricing-section {
    background-color: #ffffff;
    padding: 6rem 2rem;
    position: relative;
}

.pricing-container {
    max-width: 75rem;
    margin: 0 auto;
}

/* Pricing Header */
.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.pricing-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 2rem;
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.billing-option {
    font-size: 1rem;
    font-weight: 500;
    color: #6b7280;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.billing-option.active {
    color: #1a1a1a;
    font-weight: 600;
}

.savings-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.625rem;
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border: 1px solid #86efac;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #166534;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.toggle-switch {
    position: relative;
    width: 3rem;
    height: 1.75rem;
    background-color: #e5e7eb;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    padding: 0;
}

.toggle-switch:hover {
    background-color: #d1d5db;
}

.toggle-switch.active {
    background-color: #2563eb;
}

.toggle-slider {
    position: absolute;
    top: 0.25rem;
    left: 0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    background-color: #ffffff;
    border-radius: 50%;
    transition: transform 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-switch.active .toggle-slider {
    transform: translateX(1.25rem);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Pricing Card */
.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2.5rem 2rem;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    border-color: #d1d5db;
}

.pricing-card-popular {
    border-color: #2563eb;
    box-shadow: 0 10px 30px -5px rgba(37, 99, 235, 0.2);
    transform: scale(1.05);
}

.pricing-card-popular:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.3);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    padding: 0.375rem 1rem;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.plan-description {
    font-size: 0.9375rem;
    color: #6b7280;
    margin: 0;
}

.pricing-card-price {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

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

.price-period {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

.annual-note {
    display: none;
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.annual-note.active {
    display: block;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.5;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item i {
    color: #16a34a;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.feature-note i {
    color: #3b82f6;
}

.feature-item strong {
    font-weight: 600;
    color: #1a1a1a;
}

/* Pricing Buttons */
.pricing-btn {
    width: 100%;
    padding: 0.625rem 1.5rem;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    border: none;
}

.pricing-btn-primary {
    background-color: #2563eb;
    color: #ffffff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.pricing-btn-primary:hover {
    background-color: #1d4ed8;
}

.pricing-btn-secondary {
    background-color: transparent;
    color: #333;
    border: none;
}

.pricing-btn-secondary:hover {
    background-color: #f5f5f5;
}

.pricing-btn-coming-soon {
    background: #f3f4f6;
    color: #6b7280;
    border: 2px solid #e5e7eb;
    cursor: not-allowed;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-btn-coming-soon:hover {
    background: #f3f4f6;
    transform: none;
}

/* Pricing Footer */
.pricing-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.pricing-footer-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.6;
    flex-wrap: wrap;
}

.pricing-footer-text i {
    color: #16a34a;
    flex-shrink: 0;
}

/* Responsive Pricing Section */
@media (max-width: 1024px) {
    .pricing-section {
        padding: 5rem 2rem;
    }

    .pricing-header {
        margin-bottom: 3rem;
    }

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

    .pricing-subtitle {
        font-size: 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 28rem;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2.5rem;
    }

    .pricing-card {
        padding: 2rem 1.75rem;
    }

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

    .pricing-card-popular:hover {
        transform: scale(1) translateY(-8px);
    }

    .plan-name {
        font-size: 1.375rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .feature-item {
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 4rem 1.5rem;
    }

    .pricing-header {
        margin-bottom: 2.5rem;
    }

    .pricing-title {
        font-size: 1.75rem;
    }

    .pricing-subtitle {
        font-size: 0.9375rem;
    }

    .pricing-grid {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .pricing-card {
        padding: 1.75rem 1.5rem;
    }

    .plan-name {
        font-size: 1.25rem;
    }

    .plan-description {
        font-size: 0.875rem;
    }

    .price-amount {
        font-size: 2.25rem;
    }

    .pricing-card-price {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .feature-item {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }

    .pricing-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }

    .pricing-footer-text {
        font-size: 0.875rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 3rem 1rem;
    }

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

    .pricing-title {
        font-size: 1.5rem;
    }

    .pricing-subtitle {
        font-size: 0.875rem;
    }

    .pricing-grid {
        gap: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem 1.25rem;
    }

    .popular-badge {
        font-size: 0.75rem;
        padding: 0.3125rem 0.875rem;
    }

    .plan-name {
        font-size: 1.125rem;
    }

    .plan-description {
        font-size: 0.8125rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .price-period {
        font-size: 0.9375rem;
    }

    .pricing-card-price {
        margin-bottom: 1.25rem;
        padding-bottom: 1.25rem;
    }

    .pricing-features {
        margin-bottom: 1.5rem;
    }

    .feature-item {
        font-size: 0.8125rem;
        margin-bottom: 0.625rem;
        gap: 0.625rem;
    }

    .feature-item i {
        width: 18px;
        height: 18px;
    }

    .pricing-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
    }

    .pricing-footer {
        padding-top: 1.5rem;
    }

    .pricing-footer-text {
        font-size: 0.8125rem;
        flex-direction: column;
        gap: 0.375rem;
    }
}

/* ========================================
   ABOUT US SECTION STYLES
   ======================================== */

/* About Section */
.about-section {
    background-color: #f7f8f9;
    padding: 6rem 2rem;
    position: relative;
}

.about-container {
    max-width: 75rem;
    margin: 0 auto;
}

/* About Card */
.about-card {
    background: #2563eb;
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.875rem;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.about-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 50rem;
}

.about-stats-row {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.about-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.about-stat-label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Responsive About Section */
@media (max-width: 1024px) {
    .about-section {
        padding: 5rem 2rem;
    }

    .about-card {
        padding: 2.5rem;
    }

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

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

    .about-stats-row {
        gap: 2rem;
    }

    .about-stat-value {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 4rem 1.5rem;
    }

    .about-card {
        padding: 2rem;
    }

    .about-title {
        font-size: 1.75rem;
    }

    .about-description {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }

    .about-stats-row {
        gap: 1.5rem;
    }

    .about-stat-value {
        font-size: 1.75rem;
    }

    .about-stat-label {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 3rem 1rem;
    }

    .about-card {
        padding: 1.5rem;
    }

    .about-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .about-description {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
    }

    .about-badge {
        font-size: 0.75rem;
        padding: 0.3125rem 0.75rem;
        margin-bottom: 1rem;
    }

    .about-stats-row {
        gap: 1.25rem;
        flex-direction: column;
    }

    .about-stat-value {
        font-size: 1.5rem;
    }

    .about-stat-label {
        font-size: 0.8125rem;
    }
}

/* ========================================
   SHARED SECTION STYLES
   ======================================== */

/* Section Header - Shared */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #6b7280;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 3rem;
    }

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

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

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }
}

/* ========================================
   INTEGRATION SECTION STYLES
   ======================================== */

/* Integration Section */
.integration-section {
    background-color: #ffffff;
    padding: 6rem 0 6rem 0;
    overflow-x: hidden;
}

.integration-container {
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Integration Content */
.integration-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 3rem 0;
}

/* Platform Bubbles Wrapper - Full Width */
.integration-platforms-wrapper {
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Platform Bubbles */
.integration-platforms {
    position: relative;
    width: 100%;
    aspect-ratio: 19 / 4;
    min-height: 400px;
    padding: 3rem 0;
}

.platform-bubble {
    position: absolute;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    cursor: pointer;
    transform: translate(-50%, -50%);
    animation: float1 5s ease-in-out infinite;
}

/* More random animation variations */
.platform-bubble:nth-child(2n) {
    animation-name: float2;
    animation-duration: 7.3s;
    animation-delay: -1.2s;
}

.platform-bubble:nth-child(3n) {
    animation-name: float3;
    animation-duration: 6.1s;
    animation-delay: -2.7s;
}

.platform-bubble:nth-child(5n) {
    animation-name: float4;
    animation-duration: 8.5s;
    animation-delay: -0.8s;
}

.platform-bubble:nth-child(7n) {
    animation-name: float5;
    animation-duration: 9.2s;
    animation-delay: -4.1s;
}

.platform-bubble:nth-child(11n) {
    animation-name: float6;
    animation-duration: 7.8s;
    animation-delay: -3.3s;
}

.platform-bubble:nth-child(13n) {
    animation-name: float1;
    animation-duration: 10.5s;
    animation-delay: -5.6s;
}

.platform-bubble:nth-child(4n+1) {
    animation-duration: 6.7s;
    animation-delay: -1.9s;
}

.platform-bubble:nth-child(6n+2) {
    animation-duration: 8.1s;
    animation-delay: -3.8s;
}

.platform-bubble img,
.platform-bubble svg {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
}

.platform-bubble:hover {
    transform: translate(-50%, -50%) translateY(-8px) scale(1.15);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
    animation-play-state: paused;
}

@keyframes float1 {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px) translateX(0px);
    }
    33% {
        transform: translate(-50%, -50%) translateY(-18px) translateX(5px);
    }
    66% {
        transform: translate(-50%, -50%) translateY(-8px) translateX(-3px);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px) translateX(0px);
    }
    25% {
        transform: translate(-50%, -50%) translateY(-12px) translateX(-6px);
    }
    75% {
        transform: translate(-50%, -50%) translateY(-22px) translateX(4px);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px) translateX(0px);
    }
    40% {
        transform: translate(-50%, -50%) translateY(-25px) translateX(7px);
    }
    80% {
        transform: translate(-50%, -50%) translateY(-10px) translateX(-5px);
    }
}

@keyframes float4 {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px) translateX(0px);
    }
    30% {
        transform: translate(-50%, -50%) translateY(-15px) translateX(-8px);
    }
    70% {
        transform: translate(-50%, -50%) translateY(-20px) translateX(6px);
    }
}

@keyframes float5 {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px) translateX(0px);
    }
    35% {
        transform: translate(-50%, -50%) translateY(-28px) translateX(4px);
    }
    65% {
        transform: translate(-50%, -50%) translateY(-12px) translateX(-7px);
    }
}

@keyframes float6 {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px) translateX(0px);
    }
    45% {
        transform: translate(-50%, -50%) translateY(-16px) translateX(-4px);
    }
    85% {
        transform: translate(-50%, -50%) translateY(-24px) translateX(8px);
    }
}

/* Integration Info */
.integration-info {
    text-align: center;
    padding: 2.5rem;
    background: #f9fafb;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.integration-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.integration-info-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 2rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

.integration-disclaimer {
    font-size: 0.8125rem;
    color: #9ca3af;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Mobile - Hide 2/3 of bubbles */
@media (max-width: 768px) {
    .platform-bubble:nth-child(3n+2),
    .platform-bubble:nth-child(3n+3) {
        display: none;
    }
}

/* Integration Stats Row */
.integration-stats-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.integration-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.integration-stat-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #2563eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.integration-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.integration-stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

/* Responsive Integration */
@media (max-width: 768px) {
    .integration-section {
        padding: 4rem 1.5rem;
    }


    .integration-content {
        gap: 2rem;
    }

    .integration-platforms {
        aspect-ratio: 16 / 5;
        min-height: 250px;
    }

    .platform-bubble {
        width: 4rem;
        height: 4rem;
    }

    .platform-bubble img,
    .platform-bubble svg {
        width: 2.25rem;
        height: 2.25rem;
    }

    .integration-info {
        padding: 2rem;
    }

    .integration-info-title {
        font-size: 1.25rem;
    }

    .integration-info-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .integration-stats-row {
        gap: 2rem;
    }

    .integration-stat-value {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .integration-section {
        padding: 3rem 1rem;
    }

    .integration-platforms {
        aspect-ratio: 1 / 1;
        min-height: 400px;
    }

    .platform-bubble {
        width: 3.5rem;
        height: 3.5rem;
    }

    .platform-bubble img,
    .platform-bubble svg {
        width: 2rem;
        height: 2rem;
    }

    .integration-info {
        padding: 1.5rem;
    }

    .integration-info-title {
        font-size: 1.125rem;
    }

    .integration-info-text {
        font-size: 0.9375rem;
    }

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

    .integration-stat {
        justify-content: center;
    }

    .integration-stat-value {
        font-size: 1.125rem;
    }

    .integration-stat-label {
        font-size: 0.8125rem;
    }
}

/* ========================================
   COMPLIANCE SECTION STYLES
   ======================================== */

/* Compliance Section */
.compliance-section {
    background-color: #ffffff;
    padding: 6rem 2rem;
}

.compliance-container {
    max-width: 75rem;
    margin: 0 auto;
}

/* Compliance Grid */
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.compliance-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    text-align: center;
}

.compliance-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

.compliance-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #ffffff;
}

.compliance-icon-wcag {
    background: #2563eb;
}

.compliance-icon-ada {
    background: #7c3aed;
}

.compliance-icon-508 {
    background: #0891b2;
}

.compliance-icon-eu {
    background: #059669;
}

.compliance-icon-soc {
    background: #dc2626;
}

.compliance-icon-gdpr {
    background: #ea580c;
}

.compliance-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.compliance-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #6b7280;
}

/* Compliance Footer */
.compliance-footer {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2.5rem;
}

.compliance-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.compliance-stat {
    text-align: center;
}

.compliance-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #2563eb;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.compliance-stat-label {
    font-size: 0.9375rem;
    color: #6b7280;
    font-weight: 500;
}

/* Responsive Compliance */
@media (max-width: 1024px) {
    .compliance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .compliance-section {
        padding: 4rem 1.5rem;
    }


    .compliance-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .compliance-card {
        padding: 1.75rem;
    }

    .compliance-footer {
        padding: 2rem;
    }

    .compliance-stats {
        gap: 2rem;
    }

    .compliance-stat-value {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .compliance-section {
        padding: 3rem 1rem;
    }

    .compliance-card {
        padding: 1.5rem;
    }

    .compliance-title {
        font-size: 1.125rem;
    }

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

    .compliance-stat-value {
        font-size: 1.5rem;
    }
}

/* ========================================
   FAQ SECTION STYLES
   ======================================== */

/* FAQ Section */
.faq-section {
    background-color: #f7f8f9;
    padding: 6rem 2rem;
}

.faq-container {
    max-width: 75rem;
    margin: 0 auto;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

/* FAQ Item */
.faq-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.1);
}

.faq-item.active {
    border-color: #2563eb;
}

/* FAQ Question */
.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-question h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0;
}

.faq-question i {
    color: #6b7280;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #2563eb;
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1rem 1.5rem 1.5rem;
}

.faq-answer p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #4b5563;
}

/* Responsive FAQ */
@media (max-width: 1024px) {
    .faq-section {
        padding: 5rem 2rem;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 1.5rem;
    }


    .faq-grid {
        gap: 1rem;
    }

    .faq-question {
        padding: 1.25rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 1rem 1.25rem 1.25rem;
    }

    .faq-answer p {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 3rem 1rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 0.9375rem;
    }

    .faq-item.active .faq-answer {
        padding: 0.875rem 1rem 1rem;
    }
}

/* ========================================
   PREVIEW RESULTS STYLES
   ======================================== */

/* Preview Overlay */
/* ========================================
   PREVIEW OVERLAY - MODERN REDESIGN
   ======================================== */

.preview-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    animation: fadeIn 0.2s ease;
    padding: 1rem;
}

.preview-overlay.active {
    display: flex;
}

/* Preview Container */
.preview-container {
    background-color: #ffffff;
    border-radius: 20px;
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Preview Close */
.preview-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    padding: 0.625rem;
    color: #6b7280;
    transition: all 0.2s;
    border-radius: 8px;
    z-index: 10;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-close:hover {
    color: #1a1a1a;
    border-color: #d1d5db;
    background-color: #f9fafb;
}

/* Preview Content */
.preview-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

/* Preview Header Section */
.preview-header-section {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border-bottom: 1px solid #e5e7eb;
    padding: 2rem 2.5rem;
}

.preview-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.preview-header-left {
    flex: 1;
}

.preview-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background-color: #dcfce7;
    border: 1px solid #86efac;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #166534;
    margin-bottom: 1rem;
}

.preview-badge i {
    color: #16a34a;
}

.preview-main-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.preview-main-subtitle {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.5;
}

.preview-main-subtitle strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Score Compact */
.preview-score-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.score-circle-compact {
    position: relative;
    width: 120px;
    height: 120px;
}

.score-ring {
    transform: rotate(-90deg);
}

.score-ring-bg {
    stroke: #e5e7eb;
}

.score-ring-fill {
    stroke: #2563eb;
    stroke-dasharray: 314;
    stroke-dashoffset: 314;
    transition: stroke-dashoffset 1s ease-in-out;
    stroke-linecap: round;
}

.score-value-compact {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: #1a1a1a;
}

.score-label-compact {
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    color: #6b7280;
}

/* Preview Main Content */
.preview-main-content {
    display: flex;
    flex: 1;
    overflow: hidden;
}

/* Preview Left Modern - Issues */
.preview-left-modern {
    flex: 0 0 55%;
    padding: 2rem 2.5rem;
    overflow-y: auto;
    background: #ffffff;
    border-right: 1px solid #e5e7eb;
}

/* Preview Stats Modern */
.preview-stats-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.preview-stat-card {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

.stat-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-critical {
    background-color: #fee2e2;
    color: #dc2626;
}

.stat-serious {
    background-color: #fef3c7;
    color: #f59e0b;
}

.stat-total {
    background-color: #dbeafe;
    color: #2563eb;
}

.stat-content {
    flex: 1;
    min-width: 0;
}

.stat-value-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label-modern {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.3;
}

/* Preview Issues Section */
.preview-issues-section {
    margin-top: 1rem;
}

.preview-issues-title-modern {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.preview-issues-list-modern {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.more-issues-banner-modern {
    margin-top: 1rem;
    padding: 0.875rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.more-issues-banner-text {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.more-issues-banner-subtitle {
    font-size: 0.8125rem;
    color: #9ca3af;
}

/* Preview Issue Items */
.preview-issue {
    padding: 1rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.2s;
}

.preview-issue:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.preview-issue-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.preview-issue-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1a1a1a;
    flex: 1;
}

.preview-issue-badge {
    padding: 0.25rem 0.625rem;
    border-radius: 100px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    flex-shrink: 0;
}

.preview-issue-badge.critical {
    background-color: #fee2e2;
    color: #dc2626;
}

.preview-issue-badge.serious {
    background-color: #fef3c7;
    color: #f59e0b;
}

.preview-issue-badge.moderate {
    background-color: #dbeafe;
    color: #2563eb;
}

.preview-issue-badge.minor {
    background-color: #f3f4f6;
    color: #6b7280;
}

.preview-issue-description {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #6b7280;
}

/* Blurred Preview Issues for Conversion */
.preview-issue.blurred {
    position: relative;
    filter: blur(4px);
    opacity: 0.6;
    pointer-events: none;
    user-select: none;
}

.preview-issue.blurred::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 8px;
}

.preview-issue.blurred .preview-issue-description {
    filter: blur(6px);
}

/* Preview Right Modern - Form */
.preview-right-modern {
    flex: 0 0 45%;
    padding: 2rem 2.5rem;
    overflow-y: auto;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-form-card {
    width: 100%;
    max-width: 420px;
}

/* Form Header Modern */
.form-header-modern {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-title-modern {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.form-subtitle-modern {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.5;
    font-weight: 500;
}

/* Benefits Grid Modern */
.benefits-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.benefit-item-modern {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #374151;
}

.benefit-icon-modern {
    width: 2rem;
    height: 2rem;
    background-color: #ffffff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    flex-shrink: 0;
}

/* Form Group Modern */
.form-group-modern {
    margin-bottom: 1.25rem;
}

.form-label-modern {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.input-wrapper-modern {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon-modern {
    position: absolute;
    left: 1rem;
    color: #9ca3af;
    pointer-events: none;
}

.input-modern {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-family: inherit;
    color: #1f2937;
    background-color: #ffffff;
    transition: all 0.2s;
}

.input-modern:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.input-modern::placeholder {
    color: #9ca3af;
}

/* Remove autofill background for modern input */
.input-modern:-webkit-autofill,
.input-modern:-webkit-autofill:hover,
.input-modern:-webkit-autofill:focus,
.input-modern:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    box-shadow: 0 0 0 30px white inset !important;
    -webkit-text-fill-color: #1f2937 !important;
}

/* Checkbox Group Modern */
.checkbox-group-modern {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
}

.checkbox-modern {
    margin-top: 0.125rem;
    width: 1rem;
    height: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label-modern {
    font-size: 0.8125rem;
    color: #6b7280;
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-label-modern a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.checkbox-label-modern a:hover {
    text-decoration: underline;
}

/* Submit Button Modern */
.submit-btn-modern {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.0625rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    text-transform: none;
}

.submit-btn-modern:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.35);
}

.submit-btn-modern:active {
    transform: translateY(0);
}

/* Trust Badges Modern */
.trust-badges-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.trust-item-modern {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
}

.trust-item-modern i {
    color: #16a34a;
}

/* Verification Header Modern */
.verification-header-modern {
    text-align: left;
    margin-bottom: 1.5rem;
}

.verification-icon-modern {
    width: 4rem;
    height: 4rem;
    background: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    margin: 0 0 1rem 0;
}

.verification-title-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.verification-text-modern {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.verification-text-modern strong {
    color: #1a1a1a;
    font-weight: 600;
}

.verification-hint-modern {
    font-size: 0.8125rem;
    color: #9ca3af;
    line-height: 1.5;
}

/* Code Input Modern */
.code-input-modern {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: monospace;
    color: #1f2937;
    background-color: #ffffff;
    text-align: left;
    letter-spacing: 0.5rem;
    transition: all 0.2s;
}

.code-input-modern:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Resend Button Modern */
.resend-btn-modern {
    width: 100%;
    padding: 0.75rem;
    background: transparent;
    color: #6b7280;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.resend-btn-modern:hover {
    background-color: #f9fafb;
    border-color: #d1d5db;
}

.resend-btn-modern:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Verification Step Visibility */
.verification-step {
    display: none;
}

.verification-step.active {
    display: block;
}

/* Preview Logo - keep from old styles */
.preview-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.preview-form-header {
    text-align: left;
    margin-bottom: 1.5rem;
}

.preview-form-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.preview-form-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.4;
}

/* Preview Benefits */
.preview-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

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

.preview-benefit-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.preview-benefit-icon svg {
    width: 20px;
    height: 20px;
}

.preview-benefit-text {
    flex: 1;
}

.preview-benefit-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 0.25rem;
}

.preview-benefit-desc {
    font-size: 0.8125rem;
    color: #6b7280;
    line-height: 1.4;
}

/* Preview Guarantee */
.preview-guarantee {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.625rem;
    padding: 1rem;
    margin-top: 1rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
}

.preview-guarantee svg {
    color: #16a34a;
    flex-shrink: 0;
}

.preview-guarantee span {
    font-size: 0.875rem;
    color: #166534;
    font-weight: 600;
}

/* Verification Steps */
.verification-step {
    display: none;
}

.verification-step.active {
    display: block;
}

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

#emailStep .checkbox-group {
    margin-bottom: 1.5rem;
}

#emailStep .modal-actions {
    margin-bottom: 1.5rem;
}

.verification-sent-notice {
    text-align: center;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.verification-sent-notice svg {
    width: 56px;
    height: 56px;
    color: #2563eb;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    padding: 14px;
    border-radius: 50%;
}

.verification-sent-notice h4 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.verification-sent-notice p {
    font-size: 0.9375rem;
    color: #4b5563;
    margin-bottom: 0;
    line-height: 1.6;
}

.verification-sent-notice p:first-of-type {
    margin-bottom: 1rem;
}

.verification-sent-notice strong {
    color: #2563eb;
    font-weight: 600;
}

.spam-notice {
    font-size: 0.8125rem !important;
    color: #dc2626 !important;
    margin-top: 1rem !important;
    font-weight: 500;
    padding: 0.75rem 1rem;
    background: #fef2f2;
    border-radius: 8px;
    border: 1px solid #fecaca;
}

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

.code-input {
    width: 100%;
    height: 64px;
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.5rem;
    font-family: 'Courier New', monospace;
    color: #1a1a1a;
    transition: all 0.2s;
    background: #ffffff;
}

.code-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.code-input::placeholder {
    color: #d1d5db;
    letter-spacing: 0.5rem;
    font-size: 1.5rem;
}

.modal-actions {
    margin-top: 0;
}

.resend-code-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: #ffffff;
    color: #6b7280;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 1rem;
}

.resend-code-btn:hover:not(:disabled) {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #1a1a1a;
}

.resend-code-btn:disabled {
    cursor: not-allowed;
    opacity: 0.6;
    background: #f9fafb;
}

/* Issues on Left Side */
.preview-issues-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
    width: 100%;
}

.preview-issues-subtitle {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

/* Preview Issues List */
.preview-issues-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    width: 100%;
}

.preview-issue {
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.2s;
    backdrop-filter: blur(10px);
}

/* Duplicate styles removed - using correct styles from lines 3957-4019 */

/* More Issues Banner */
/* Duplicate styles removed - using correct styles from lines 3933-3954 */

/* Blurred Issues - Hidden in new layout */
.blurred-issues {
    display: none;
}

.blur-placeholder {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    filter: blur(6px);
    opacity: 0.4;
    pointer-events: none;
}

.placeholder-issue {
    height: 80px;
    background: linear-gradient(90deg, #e5e7eb 0%, #f3f4f6 50%, #e5e7eb 100%);
    background-size: 200% 100%;
    border-radius: 10px;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.blur-content {
    text-align: center;
    padding: 2rem;
}

.blur-content svg {
    color: #2563eb;
    margin-bottom: 1rem;
}

.blur-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.blur-content p {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 600;
}

/* Unlock Button - Hidden in new layout */
.unlock-btn {
    display: none;
}

.unlock-benefits {
    display: none;
}

/* Responsive Preview */
@media (max-width: 1024px) {
    .preview-content {
        flex-direction: column;
    }

    .preview-left {
        flex: 0 0 auto;
        padding: 2.5rem 2rem;
    }

    .preview-benefits {
        gap: 0.875rem;
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .preview-benefit-icon {
        width: 2.25rem;
        height: 2.25rem;
    }

    .preview-benefit-title {
        font-size: 0.875rem;
    }

    .preview-benefit-desc {
        font-size: 0.75rem;
    }

    .preview-title {
        font-size: 1.625rem;
        margin-bottom: 1.5rem;
    }

    .score-circle {
        width: 160px;
        height: 160px;
        margin-bottom: 1.25rem;
    }

    .score-value {
        font-size: 3rem;
    }

    .score-label {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .preview-stats {
        gap: 1rem;
        max-width: 100%;
    }

    .preview-stat {
        padding: 1rem 0.75rem;
    }

    .preview-stat-value {
        font-size: 1.5rem;
    }

    .preview-stat-label {
        font-size: 0.75rem;
    }

    .preview-right {
        padding: 2.5rem 2rem;
    }

    .preview-issues-title {
        font-size: 1.625rem;
    }

    .preview-issues-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }

    .unlock-btn {
        padding: 1.125rem 1.75rem;
        font-size: 1.0625rem;
    }
}

@media (max-width: 768px) {
    .preview-container {
        width: 95%;
    }

    .preview-left {
        padding: 2rem 1.5rem;
    }

    .preview-benefits {
        gap: 0.75rem;
        padding: 0.875rem;
        margin-bottom: 1.25rem;
    }

    .preview-benefit-icon {
        width: 2rem;
        height: 2rem;
    }

    .preview-benefit-icon svg {
        width: 18px;
        height: 18px;
    }

    .preview-benefit-title {
        font-size: 0.8125rem;
    }

    .preview-benefit-desc {
        font-size: 0.6875rem;
    }

    .preview-guarantee {
        padding: 0.875rem;
        margin-top: 0.875rem;
    }

    .preview-guarantee span {
        font-size: 0.8125rem;
    }

    .preview-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .score-circle {
        width: 140px;
        height: 140px;
        margin-bottom: 1rem;
    }

    .score-value {
        font-size: 2.5rem;
    }

    .score-label {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
    }

    .preview-stats {
        gap: 0.75rem;
    }

    .preview-stat {
        padding: 0.875rem 0.625rem;
    }

    .preview-stat-value {
        font-size: 1.25rem;
    }

    .preview-stat-label {
        font-size: 0.6875rem;
    }

    .preview-right {
        padding: 2rem 1.5rem;
    }

    .preview-issues-title {
        font-size: 1.5rem;
    }

    .preview-issues-subtitle {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
    }

    .preview-issue {
        padding: 1rem;
    }

    .preview-issue-title {
        font-size: 0.9375rem;
    }

    .preview-issue-badge {
        font-size: 0.625rem;
        padding: 0.1875rem 0.5rem;
    }

    .preview-issue-description {
        font-size: 0.8125rem;
    }

    .blur-content {
        padding: 1.5rem;
    }

    .blur-content svg {
        width: 40px;
        height: 40px;
    }

    .blur-content h4 {
        font-size: 1.125rem;
    }

    .blur-content p {
        font-size: 0.9375rem;
    }

    .unlock-btn {
        padding: 1.0625rem 1.5rem;
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .unlock-benefit {
        font-size: 0.875rem;
    }

    .preview-close {
        top: 1.5rem;
        right: 1.5rem;
    }
}

@media (max-width: 480px) {
    .preview-container {
        width: 96%;
    }

    .preview-left {
        padding: 1.75rem 1.25rem;
    }

    .preview-title {
        font-size: 1.375rem;
        margin-bottom: 1rem;
    }

    .score-circle {
        width: 120px;
        height: 120px;
        margin-bottom: 0.875rem;
    }

    .score-value {
        font-size: 2.25rem;
    }

    .score-label {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .preview-stats {
        gap: 0.625rem;
    }

    .preview-stat {
        padding: 0.75rem 0.5rem;
    }

    .preview-stat-value {
        font-size: 1.125rem;
    }

    .preview-stat-label {
        font-size: 0.625rem;
    }

    .preview-right {
        padding: 1.75rem 1.25rem;
    }

    .preview-issues-title {
        font-size: 1.375rem;
    }

    .preview-issues-subtitle {
        font-size: 0.8125rem;
        margin-bottom: 1rem;
    }

    .preview-issues-list {
        gap: 0.875rem;
        margin-bottom: 1.25rem;
    }

    .preview-issue {
        padding: 0.875rem;
    }

    .preview-issue-title {
        font-size: 0.875rem;
    }

    .preview-issue-description {
        font-size: 0.75rem;
    }

    .blurred-issues {
        margin-bottom: 1.5rem;
    }

    .blur-placeholder {
        gap: 0.875rem;
    }

    .placeholder-issue {
        height: 70px;
    }

    .blur-content {
        padding: 1.25rem;
    }

    .blur-content svg {
        width: 36px;
        height: 36px;
    }

    .blur-content h4 {
        font-size: 1rem;
    }

    .blur-content p {
        font-size: 0.875rem;
    }

    .unlock-btn {
        padding: 1rem 1.25rem;
        font-size: 0.9375rem;
        margin-bottom: 1rem;
    }

    .unlock-benefit {
        font-size: 0.8125rem;
        gap: 0.625rem;
    }

    .unlock-benefit svg {
        width: 14px;
        height: 14px;
    }

    .preview-close {
        top: 1.25rem;
        right: 1.25rem;
        padding: 0.625rem;
    }
}

/* ========================================
   EXIT CONFIRMATION MODAL STYLES
   ======================================== */

/* Exit Confirmation Overlay */
.exit-confirmation-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 2100;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    animation: fadeIn 0.2s ease;
}

.exit-confirmation-overlay.active {
    display: flex;
}

/* Exit Confirmation Container */
.exit-confirmation-container {
    background-color: #ffffff;
    border-radius: 20px;
    width: 90%;
    max-width: 640px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.3s ease;
    position: relative;
}

/* Exit Confirmation Content */
.exit-confirmation-content {
    padding: 3rem 2.5rem;
    text-align: center;
}

.exit-confirmation-icon {
    margin: 0 auto 1.5rem;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.exit-confirmation-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.exit-confirmation-title span {
    color: #dc2626;
}

/* Exit Loss Box */
.exit-loss-box {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 2px solid #fca5a5;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.exit-loss-header {
    font-size: 1rem;
    font-weight: 700;
    color: #991b1b;
    margin-bottom: 1rem;
    text-align: left;
}

.exit-loss-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.exit-loss-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    text-align: left;
}

.exit-loss-item svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #dc2626;
    margin-top: 0.125rem;
}

.exit-loss-item span {
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.5;
}

.exit-loss-item strong {
    color: #1a1a1a;
    font-weight: 600;
}

.exit-confirmation-offer {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    text-align: center;
}

.exit-confirmation-offer strong {
    color: #16a34a;
    font-weight: 700;
    font-size: 1.125rem;
}

.exit-confirmation-question {
    font-size: 1.125rem;
    color: #2563eb;
    font-weight: 600;
    margin: 0.75rem 0 0;
    font-style: italic;
}

/* Exit Confirmation Actions */
.exit-confirmation-actions {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin: 2rem 0 1.5rem;
}

.exit-confirmation-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1.0625rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
}

.exit-confirmation-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.4);
}

.exit-confirmation-btn-primary svg {
    width: 20px;
    height: 20px;
}

.exit-confirmation-btn-secondary {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: #6b7280;
    border: none;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.exit-confirmation-btn-secondary:hover {
    color: #1a1a1a;
    background: #f3f4f6;
}

/* Exit Confirmation Trust Badge */
.exit-confirmation-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
}

.exit-confirmation-trust svg {
    color: #16a34a;
    flex-shrink: 0;
}

.exit-confirmation-trust span {
    font-size: 0.8125rem;
    color: #166534;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .exit-confirmation-content {
        padding: 2rem 1.5rem;
    }

    .exit-confirmation-icon {
        width: 64px;
        height: 64px;
    }

    .exit-confirmation-icon svg {
        width: 36px;
        height: 36px;
    }

    .exit-confirmation-title {
        font-size: 1.375rem;
    }

    .exit-loss-box {
        padding: 1.25rem;
    }

    .exit-loss-item span {
        font-size: 0.875rem;
    }

    .exit-confirmation-offer {
        font-size: 0.9375rem;
    }

    .exit-confirmation-btn-primary {
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
    }
}

/* ========================================
   EMAIL MODAL STYLES
   ======================================== */

/* Modal Overlay */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.2s ease;
}

.modal-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Modal Container */
.modal-container {
    background-color: #ffffff;
    border-radius: 24px;
    width: 90%;
    height: 90vh;
    max-width: 1400px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.3s ease;
    position: relative;
    display: flex;
}

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

/* Modal Close */
.modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    color: #9ca3af;
    transition: all 0.2s;
    border-radius: 10px;
    z-index: 10;
}

.modal-close:hover {
    color: #1a1a1a;
    background-color: rgba(0, 0, 0, 0.05);
}

/* Modal Left Side - Benefits */
.modal-left {
    flex: 1;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    padding: 3rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
    position: relative;
    overflow-y: auto;
}

.modal-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.modal-left-content {
    position: relative;
    z-index: 1;
    max-width: 520px;
}

.modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.modal-left h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.modal-left-subtitle {
    font-size: 1.0625rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Benefits List */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0;
    background: transparent;
    border: none;
    transition: all 0.2s;
}

.benefit-item:hover {
    transform: translateX(4px);
}

.benefit-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.benefit-icon svg {
    color: #ffffff;
    width: 20px;
    height: 20px;
}

.benefit-content {
    flex: 1;
    text-align: left;
}

.benefit-title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
}

/* Social Proof */
.modal-social-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.social-proof-icon {
    width: 2.25rem;
    height: 2.25rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    margin-bottom: 0.5rem;
}

.social-proof-icon svg {
    width: 18px;
    height: 18px;
    color: #ffffff;
}

.social-proof-text {
    flex: 1;
}

.social-proof-value {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.social-proof-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Modal Right Side - Form */
.modal-right {
    flex: 1;
    padding: 3rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
    overflow-y: auto;
}

.modal-right-content {
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
}

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

.modal-form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.625rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.modal-form-subtitle {
    font-size: 1.0625rem;
    color: #6b7280;
    line-height: 1.4;
}

/* Modal Form */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1a1a1a;
}

.modal-input-container {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    transition: all 0.2s;
}

.modal-input-container:focus-within {
    border-color: #2563eb;
    background-color: #fafbff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.modal-input-icon {
    color: #9ca3af;
    flex-shrink: 0;
    margin-right: 0.875rem;
    width: 20px;
    height: 20px;
}

.modal-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    font-family: inherit;
    color: #1f2937;
    background: transparent;
}

.modal-input::placeholder {
    color: #9ca3af;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1.25rem;
    background-color: #f9fafb;
    border-radius: 12px;
}

.checkbox-wrapper {
    position: relative;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.checkbox-input {
    appearance: none;
    width: 1.375rem;
    height: 1.375rem;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.checkbox-input:checked {
    background-color: #2563eb;
    border-color: #2563eb;
}

.checkbox-input:checked::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}

.checkbox-input:hover {
    border-color: #2563eb;
}

.checkbox-label {
    font-size: 0.9375rem;
    color: #4b5563;
    line-height: 1.5;
}

.checkbox-label a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Modal Actions */
.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-top: 0.25rem;
}

.modal-submit-btn {
    width: 100%;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 1.125rem 2rem;
    font-size: 1.0625rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.modal-submit-btn:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.modal-submit-btn:active {
    transform: translateY(0);
}

.modal-submit-btn:disabled {
    background-color: #d1d5db;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.modal-cancel-btn {
    width: 100%;
    background: transparent;
    color: #6b7280;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.modal-cancel-btn:hover {
    background-color: #f5f5f5;
    color: #1a1a1a;
}

/* Trust Badge */
.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1rem 1.25rem;
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    margin-bottom: 0.25rem;
}

.trust-badge svg {
    color: #16a34a;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.trust-badge-text {
    font-size: 0.875rem;
    color: #166534;
    font-weight: 600;
}

/* Responsive Modal */
@media (max-width: 1024px) {
    .modal-container {
        flex-direction: column;
        width: 95%;
        height: auto;
        max-height: 95vh;
    }

    .modal-left {
        padding: 2.5rem 2.5rem;
    }

    .modal-left h2 {
        font-size: 2.25rem;
    }

    .modal-left-subtitle {
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }

    .modal-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
        margin-bottom: 1.25rem;
    }

    .benefits-list {
        gap: 1rem;
        margin-bottom: 1.75rem;
    }

    .benefit-icon {
        width: 2.25rem;
        height: 2.25rem;
    }

    .benefit-icon svg {
        width: 18px;
        height: 18px;
    }

    .benefit-title {
        font-size: 1rem;
    }

    .modal-social-proof {
        padding-top: 1.25rem;
    }

    .social-proof-value {
        font-size: 1.125rem;
    }

    .social-proof-label {
        font-size: 0.75rem;
    }

    .modal-right {
        padding: 2.5rem 2.5rem;
    }

    .modal-form-title {
        font-size: 1.75rem;
    }

    .modal-form-subtitle {
        font-size: 1rem;
    }

    .modal-form-header {
        margin-bottom: 1.75rem;
    }
}

@media (max-width: 768px) {
    .modal-container {
        width: 95%;
    }

    .modal-left {
        padding: 2.25rem 2rem;
    }

    .modal-left h2 {
        font-size: 1.875rem;
        margin-bottom: 1rem;
    }

    .modal-left-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }

    .modal-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
        margin-bottom: 1rem;
    }

    .benefits-list {
        gap: 0.875rem;
        margin-bottom: 1.5rem;
    }

    .benefit-icon {
        width: 2rem;
        height: 2rem;
    }

    .benefit-icon svg {
        width: 16px;
        height: 16px;
    }

    .benefit-title {
        font-size: 0.9375rem;
    }

    .modal-social-proof {
        gap: 0.75rem;
        padding-top: 1rem;
    }

    .social-proof-icon {
        width: 2rem;
        height: 2rem;
        margin-bottom: 0.375rem;
    }

    .social-proof-icon svg {
        width: 16px;
        height: 16px;
    }

    .social-proof-value {
        font-size: 1rem;
    }

    .social-proof-label {
        font-size: 0.6875rem;
    }

    .modal-right {
        padding: 2.25rem 2rem;
    }

    .modal-form-title {
        font-size: 1.625rem;
    }

    .modal-form-subtitle {
        font-size: 0.9375rem;
    }

    .modal-form-header {
        margin-bottom: 1.5rem;
    }

    .modal-form {
        gap: 1.25rem;
    }

    .modal-close {
        top: 1.5rem;
        right: 1.5rem;
    }
}

@media (max-width: 480px) {
    .modal-container {
        width: 96%;
    }

    .modal-left {
        padding: 1.75rem 1.5rem;
    }

    .modal-left h2 {
        font-size: 1.625rem;
        margin-bottom: 0.875rem;
    }

    .modal-left-subtitle {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
    }

    .modal-badge {
        font-size: 0.6875rem;
        padding: 0.3125rem 0.625rem;
        margin-bottom: 0.875rem;
    }

    .benefits-list {
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .benefit-icon {
        width: 1.875rem;
        height: 1.875rem;
    }

    .benefit-icon svg {
        width: 15px;
        height: 15px;
    }

    .benefit-title {
        font-size: 0.875rem;
    }

    .modal-social-proof {
        gap: 0.625rem;
        padding-top: 0.875rem;
    }

    .social-proof-icon {
        width: 1.875rem;
        height: 1.875rem;
        margin-bottom: 0.3125rem;
    }

    .social-proof-icon svg {
        width: 14px;
        height: 14px;
    }

    .social-proof-value {
        font-size: 0.9375rem;
    }

    .social-proof-label {
        font-size: 0.625rem;
    }

    .modal-right {
        padding: 1.75rem 1.5rem;
    }

    .modal-form-title {
        font-size: 1.5rem;
    }

    .modal-form-subtitle {
        font-size: 0.875rem;
    }

    .modal-form-header {
        margin-bottom: 1.25rem;
    }

    .modal-form {
        gap: 1.125rem;
    }

    .modal-input-container {
        padding: 0.875rem 1.125rem;
    }

    .modal-input {
        font-size: 0.9375rem;
    }

    .checkbox-group {
        padding: 1.125rem;
    }

    .checkbox-label {
        font-size: 0.875rem;
    }

    .trust-badge {
        padding: 0.875rem 1.125rem;
    }

    .trust-badge-text {
        font-size: 0.8125rem;
    }

    .modal-submit-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .modal-cancel-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }

    .modal-close {
        top: 1.25rem;
        right: 1.25rem;
        padding: 0.625rem;
    }
}

/* ========================================
   FOOTER STYLES
   ======================================== */

/* Footer */
.footer {
    background-color: #f7f8f9;
    color: #1a1a1a;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid #e5e7eb;
}

.footer-container {
    max-width: 75rem;
    margin: 0 auto;
}

/* Footer Top */
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 2rem;
}

/* Footer Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #1a1a1a;
}

.footer-logo i {
    color: #2563eb;
}

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

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #6b7280;
    max-width: 20rem;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    transform: translateY(-2px);
}

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-column-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.footer-column-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column-list li a {
    font-size: 0.9375rem;
    color: #6b7280;
    transition: color 0.2s ease;
    line-height: 1.5;
}

.footer-column-list li a:hover {
    color: #2563eb;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Footer Badges */
.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.8125rem;
    color: #6b7280;
    font-weight: 500;
}

.footer-badge i {
    color: #2563eb;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-top {
        gap: 2.5rem;
        padding-bottom: 2.5rem;
        margin-bottom: 1.5rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .footer-badges {
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2.5rem 1rem 1.5rem;
    }

    .footer-top {
        gap: 2rem;
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
    }

    .footer-logo span {
        font-size: 1.125rem;
    }

    .footer-tagline {
        font-size: 0.875rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-column-title {
        font-size: 0.8125rem;
    }

    .footer-column-list li a {
        font-size: 0.875rem;
    }

    .footer-copyright {
        font-size: 0.8125rem;
    }

    .footer-badge {
        font-size: 0.75rem;
        padding: 0.4375rem 0.875rem;
    }

    .social-link {
        width: 2.25rem;
        height: 2.25rem;
    }
}


/* ===================================
   Legal Pages Styles
   =================================== */

.legal-page-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 6rem 2rem 4rem;
}

.legal-page-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.legal-page-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.legal-last-updated {
    color: #6b7280;
    font-size: 0.9375rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f3f4f6;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.legal-section:first-of-type h2 {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

.legal-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
}

.legal-section p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.legal-section ul {
    margin: 1.25rem 0;
    padding-left: 1.5rem;
}

.legal-section ul li {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.legal-section ul li strong {
    color: #1f2937;
    font-weight: 600;
}

.legal-section a {
    color: #667eea;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.legal-section a:hover {
    color: #764ba2;
}

.legal-section strong {
    color: #1f2937;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .legal-page-container {
        padding: 5rem 1rem 2rem;
    }

    .legal-page-content {
        padding: 2rem 1.5rem;
        border-radius: 12px;
    }

    .legal-page-content h1 {
        font-size: 2rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .legal-section h3 {
        font-size: 1.125rem;
    }

    .legal-section p,
    .legal-section ul li {
        font-size: 0.9375rem;
    }
}
