/* Nexa Font loaded via CDN */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1e3a5f;
    background: #f7f8fa;
    overflow-x: hidden;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header */
.header {
    background: rgba(247, 248, 250, 0.98);
    backdrop-filter: blur(20px);
    color: #1e3a5f;
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    box-shadow: 0 2px 8px rgba(30, 58, 95, 0.08);
    transition: all 0.3s ease;
}

/* Header on scroll */
.header.scrolled {
    background: rgba(247, 248, 250, 1);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.12);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    display: flex;
    align-items: baseline;
    gap: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    letter-spacing: -0.02em;
    line-height: 1;
}

.logo-l {
    font-family: 'Nexa W01 Black', 'Nexa', 'Mulish', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #dc2626;
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1;
    display: inline-block;
    margin-right: 0.025em;
    letter-spacing: 0;
    vertical-align: baseline;
    position: relative;
    top: -0.01em;
}

.logo-icensify {
    color: #dc2626;
    font-size: 2.5rem;
    font-weight: 700;
    vertical-align: baseline;
    line-height: 1;
    display: inline-block;
}

/* Hero Section */
.hero {
    background: #f7f8fa;
    color: #1e3a5f;
    padding: 160px 0 0;
    margin: 0;
    position: relative;
    display: block;
}





.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Social Proof Banner */
.social-proof-banner {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(30, 58, 95, 0.1);
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(30, 58, 95, 0.05);
}

.proof-item:hover {
    transform: translateY(-5px);
}

.proof-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 0.25rem;
}

.proof-text {
    font-size: 0.85rem;
    color: #5a7a9f;
    white-space: nowrap;
}

/* Hero Title and Subtitle */
.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #1e3a5f;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.85;
    line-height: 1.6;
    max-width: 600px;
    font-weight: 400;
    color: #5a7a9f;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid rgba(30, 58, 95, 0.1);
    font-size: 0.9rem;
    font-weight: 500;
    color: #1e3a5f;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(30, 58, 95, 0.05);
}

.trust-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.1);
}

.trust-icon {
    color: #48bb78;
    font-weight: 600;
}

/* Early Access CTA */
.early-access-cta {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 3rem 2rem;
    border: 1px solid rgba(30, 58, 95, 0.1);
    margin-bottom: 4rem;
    box-shadow: 0 8px 32px rgba(30, 58, 95, 0.08);
    width: 100%;
    max-width: 600px;
}

.early-access-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e3a5f;
    font-weight: 600;
}

.early-access-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #5a7a9f;
}

.email-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.email-form input[type="email"] {
    flex: 1;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(30, 58, 95, 0.1);
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 1);
    color: #1e3a5f;
    outline: none;
    transition: all 0.3s ease;
}

.email-form input[type="email"]::placeholder {
    color: #8a9fb8;
    opacity: 1;
}

.email-form input[type="email"]:focus {
    background: white;
    border-color: rgba(30, 58, 95, 0.3);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.05);
    transform: translateY(-1px);
}

.cta-button {
    background: #1e3a5f;
    color: white;
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-2px);
    background: #2a4a73;
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.3);
}



.privacy-note {
    font-size: 0.85rem;
    color: #5a7a9f;
    text-align: center;
    margin-top: 1rem;
}

/* Features Section */
.features-section {
    width: 100%;
    margin-bottom: 6rem;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    text-align: center;
    color: #1e3a5f;
    letter-spacing: -0.02em;
}

.features-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(30, 58, 95, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(30, 58, 95, 0.05);
}

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

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(30, 58, 95, 0.2);
    box-shadow: 0 15px 30px rgba(30, 58, 95, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e3a5f;
    text-align: center;
}

.feature-description {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #5a7a9f;
    text-align: center;
}

/* Testimonials Section */
.testimonials-section {
    width: 100%;
    margin-bottom: 6rem;
    padding-bottom: 4rem;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    text-align: center;
    color: #1e3a5f;
    letter-spacing: -0.02em;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    width: 100%;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(30, 58, 95, 0.1);
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(30, 58, 95, 0.05);
}



.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 10px 25px rgba(30, 58, 95, 0.12);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #5a7a9f;
    position: relative;
    z-index: 1;
}

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

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #1e3a5f;
    font-size: 1rem;
}

.author-location {
    font-size: 0.9rem;
    color: #8a9fb8;
}

/* Footer in Hero Section */
.footer-in-hero {
    background: #1e2937;
    width: 100%;
    padding: 0;
    margin-top: 3rem;
    min-height: 60px;
    display: flex;
    align-items: center;
}

/* Footer in Hero - reuse existing footer styles */
.footer-in-hero .footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin: 0 auto 3rem;
    padding: 0;
    max-width: 1200px;
}

.footer-in-hero .footer-section h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.footer-in-hero .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-in-hero .footer-section li {
    margin-bottom: 0.75rem;
}

.footer-in-hero .footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.footer-in-hero .footer-section a:hover {
    color: #5a7a9f;
}

.footer-in-hero .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0.75rem 20px;
    width: 100%;
    box-sizing: border-box;
}

.footer-in-hero .footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.8;
    flex: 1;
}

.footer-in-hero .footer-bottom .social-links {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.footer-in-hero .footer-bottom .privacy-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.8;
    flex: 1;
    text-align: right;
}

.footer-in-hero .footer-bottom .privacy-link:hover {
    color: rgba(255, 255, 255, 0.9);
    opacity: 1;
}

.footer-in-hero .social-links {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.footer-in-hero .social-links a {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-in-hero .social-links a:hover {
    opacity: 1;
}

.footer-in-hero .social-links a svg {
    width: 18px;
    height: 18px;
}

.footer-in-hero .social-links a svg path {
    fill: white !important;
    opacity: 1;
}

/* Footer */
.footer {
    background: #1a202c;
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
    margin: 0;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #4299e1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

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

.social-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
    color: #4299e1;
    background: rgba(66, 153, 225, 0.1);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    animation: modalSlideIn 0.3s ease forwards;
}

@keyframes modalSlideIn {
    to {
        transform: scale(1);
    }
}

@keyframes confettiFall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

@keyframes modalCelebration {
    0% {
        transform: scale(0.8) rotate(-5deg);
    }
    50% {
        transform: scale(1.05) rotate(5deg);
    }
    100% {
        transform: scale(1) rotate(0);
    }
}

/* Loading spinner */
.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Ripple effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.modal-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.modal-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.modal-benefit {
    color: #4299e1;
    font-weight: 600;
    font-size: 1.2rem;
}

.close-button {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.close-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(66, 153, 225, 0.4);
}

/* Privacy Policy Styles */
.privacy-policy-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 58, 95, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.privacy-policy-content {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 0;
    max-width: 900px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px rgba(30, 58, 95, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInUp 0.4s ease-out;
}

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

.privacy-policy-content h2 {
    font-size: 2.2rem;
    margin: 0;
    padding: 2rem 2rem 0.5rem;
    color: #1e3a5f;
    text-align: center;
    font-weight: 600;
    background: linear-gradient(135deg, #f7f8fa 0%, #e2e8f0 100%);
    border-radius: 25px 25px 0 0;
    border-bottom: none;
}

.privacy-policy-subtitle {
    font-size: 1.1rem;
    color: #5a7a9f;
    text-align: center;
    font-weight: 500;
    padding: 0 2rem 1rem;
    margin: 0;
    background: linear-gradient(135deg, #f7f8fa 0%, #e2e8f0 100%);
    border-bottom: 1px solid rgba(30, 58, 95, 0.1);
}

.close-privacy-button {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #5a7a9f;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.1);
    z-index: 1;
}

.close-privacy-button:hover {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    transform: scale(1.1);
}

.privacy-policy-scroll {
    max-height: calc(85vh - 140px);
    overflow-y: auto;
    padding: 2rem;
    scroll-behavior: smooth;
}

.privacy-policy-scroll::-webkit-scrollbar {
    width: 8px;
}

.privacy-policy-scroll::-webkit-scrollbar-track {
    background: rgba(30, 58, 95, 0.05);
    border-radius: 10px;
}

.privacy-policy-scroll::-webkit-scrollbar-thumb {
    background: rgba(30, 58, 95, 0.2);
    border-radius: 10px;
}

.privacy-policy-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(30, 58, 95, 0.3);
}

.uc-privacy-policy {
    line-height: 1.7;
    color: #4a5568;
    font-size: 1rem;
}

.uc-privacy-policy h1,
.uc-privacy-policy h2,
.uc-privacy-policy h3 {
    color: #1e3a5f;
    margin-bottom: 1.2rem;
    margin-top: 1.8rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.4rem;
    line-height: 1.3;
}

/* Hide duplicate Privacy Policy heading in content - more aggressive approach */
.uc-privacy-policy h1:first-child,
.uc-privacy-policy h2:first-child,
.uc-privacy-policy h1:first-of-type,
.uc-privacy-policy h2:first-of-type {
    display: none !important;
}

/* Also hide any heading that contains just "Privacy Policy" */
.uc-privacy-policy h1[style*="display: none"],
.uc-privacy-policy h2[style*="display: none"] {
    display: none !important;
}

/* First visible heading should not have top margin */
.uc-privacy-policy > *:first-child,
.uc-privacy-policy > h1:first-child + *,
.uc-privacy-policy > h2:first-child + * {
    margin-top: 0 !important;
}

.uc-privacy-policy h1 {
    font-size: 1.8rem !important;
    border-bottom: 2px solid #dc2626;
    padding-bottom: 0.4rem;
    padding-top: 0.3rem;
}

.uc-privacy-policy h2 {
    font-size: 1.6rem !important;
    border-bottom: 1px solid rgba(30, 58, 95, 0.2);
    padding-bottom: 0.4rem;
    padding-top: 0.3rem;
}

.uc-privacy-policy h3 {
    font-size: 1.4rem !important;
    color: #2d3748;
    border-bottom: 1px solid rgba(30, 58, 95, 0.1);
    padding-bottom: 0.3rem;
    padding-top: 0.2rem;
}

.uc-privacy-policy p {
    margin-bottom: 1.5rem;
    text-align: justify;
    hyphens: auto;
}

.uc-privacy-policy ul,
.uc-privacy-policy ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    background: rgba(247, 248, 250, 0.5);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    border-left: 4px solid #dc2626;
}

.uc-privacy-policy li {
    margin-bottom: 0.75rem;
    position: relative;
}

.uc-privacy-policy li::marker {
    color: #dc2626;
    font-weight: 600;
}

.uc-privacy-policy strong {
    color: #1e3a5f;
    font-weight: 600;
}

.uc-privacy-policy a {
    color: #dc2626;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.uc-privacy-policy a:hover {
    color: #b91c1c;
    border-bottom-color: #b91c1c;
}

/* Mobile responsive for privacy policy */
@media (max-width: 768px) {
    .privacy-policy-section {
        padding: 1rem;
    }
    
    .privacy-policy-content {
        max-height: 90vh;
        border-radius: 20px;
    }
    
    .privacy-policy-content h2 {
        font-size: 1.8rem;
        padding: 1.5rem 1.5rem 0.5rem;
    }
    
    .privacy-policy-subtitle {
        font-size: 1rem;
        padding: 0 1.5rem 0.75rem;
    }
    
    .close-privacy-button {
        top: 1rem;
        right: 1rem;
        width: 35px;
        height: 35px;
        font-size: 1.25rem;
    }
    
    .privacy-policy-scroll {
        padding: 1.5rem;
        max-height: calc(90vh - 120px);
    }
    
    .uc-privacy-policy {
        font-size: 0.95rem;
    }
    
    .uc-privacy-policy h1 {
        font-size: 1.5rem !important;
        margin-top: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .uc-privacy-policy h2 {
        font-size: 1.3rem !important;
        margin-top: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .uc-privacy-policy h3 {
        font-size: 1.2rem !important;
        margin-top: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .uc-privacy-policy ul,
    .uc-privacy-policy ol {
        padding: 1rem 1.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 1.25rem 0;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .logo-l {
        font-size: 2.56rem;
        margin-right: -0.1em;
        top: 0.04em;
    }
    
    .logo-icensify {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .social-proof-banner {
        gap: 1rem;
    }
    
    .proof-item {
        padding: 0.75rem;
    }
    
    .trust-indicators {
        gap: 1rem;
    }
    
    .features-preview {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .email-form,
    .final-email-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .early-access-cta {
        padding: 2rem 1.5rem;
    }
    
    .early-access-cta h3 {
        font-size: 1.5rem;
    }
    
    .footer-in-hero .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-in-hero .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .features-title,
    .testimonials-title {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 1rem 0;
    }
    
    .logo-text {
        font-size: 1.75rem;
    }
    
    .logo-l {
        font-size: 2.24rem;
        margin-right: 0.015em;
        top: -0.01em;
    }
    
    .logo-icensify {
        font-size: 1.75rem;
    }
    
    .hero {
        padding: 140px 0 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .features-preview {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1.5rem 0.75rem;
    }
    
    .feature-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-content h4 {
        font-size: 1rem;
    }
    
    .feature-description {
        display: none;
    }
    
    .social-proof-banner {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        text-align: left;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .features-section {
        margin-bottom: 4rem;
    }
    
    .footer-in-hero {
        padding: 0.5rem 0;
        margin-top: 3rem;
        min-height: 50px;
    }
    
    .footer-in-hero .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .footer-in-hero .footer-section {
        text-align: left;
    }
    
    .footer-in-hero .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        padding: 0.5rem 20px;
        text-align: center;
    }
    
    .footer-in-hero .social-links {
        margin-top: 0.5rem;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
        margin: 0;
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }

    .footer-in-hero .footer-bottom {
        justify-content: space-between;
        padding: 1rem 20px;
        gap: 0.75rem;
    }

    .footer-in-hero .social-links {
        gap: 1rem;
    }

    .footer-in-hero .footer-bottom {
        padding: 0.5rem 20px;
        gap: 0.75rem;
        flex-direction: column;
    }

    .footer-in-hero .footer-bottom p,
    .footer-in-hero .footer-bottom .privacy-link {
        text-align: center;
    }

    .footer-in-hero .social-links {
        order: 2;
    }

    .footer-in-hero .footer-bottom .privacy-link {
        order: 3;
    }
} 

/* Thank You Page Styles */
.thank-you-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #f7f8fa;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 1px solid rgba(30, 58, 95, 0.1);
    box-shadow: 0 8px 32px rgba(30, 58, 95, 0.08);
}

.thank-you-content .logo {
    margin-bottom: 2rem;
}

.thank-you-message {
    margin-top: 2rem;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 1s ease infinite;
}

.thank-you-message h1 {
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.thank-you-message p {
    font-size: 1.2rem;
    color: #5a7a9f;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.special-offer {
    font-weight: 600;
    color: #dc2626 !important;
    font-size: 1.3rem !important;
    margin: 1.5rem 0;
}

.return-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: #1e3a5f;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.return-home:hover {
    background: #2a4a73;
    transform: translateY(-2px);
}

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

@media (max-width: 768px) {
    .thank-you-content {
        padding: 2rem 1.5rem;
    }
    
    .thank-you-message h1 {
        font-size: 2rem;
    }
    
    .thank-you-message p {
        font-size: 1.1rem;
    }
    
    .special-offer {
        font-size: 1.2rem !important;
    }
} 