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

:root {
    --primary-color: #0F2A4B;
    --accent-color: #1E4A7B;
    --text-primary: #0F2A4B;
    --text-secondary: #4A5568;
    --bg-light: #F8FAFC;
    --border-color: #E2E8F0;
    --success-color: #10B981;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background-color: #FFFFFF;
}

/* Password Protection Styles */
.password-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 42, 75, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.password-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    min-width: 300px;
}

.password-content h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 24px;
}

.password-content input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.password-content input:focus {
    border-color: var(--primary-color);
}

.password-content button {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.password-content button:hover {
    background-color: var(--accent-color);
}

.error-message {
    color: #dc2626;
    margin-top: 10px;
    font-size: 14px;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(15, 42, 75, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.cookie-text p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cookie-accept,
.btn-cookie-decline,
.btn-cookie-settings,
.btn-cookie-save {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-cookie-accept,
.btn-cookie-save {
    background: white;
    color: var(--primary-color);
}

.btn-cookie-accept:hover,
.btn-cookie-save:hover {
    background: #f8f9fa;
    transform: translateY(-1px);
}

.btn-cookie-decline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cookie-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-cookie-settings {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-cookie-settings:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 42, 75, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10001;
}

.cookie-settings-modal.show {
    display: flex;
}

.cookie-settings-content {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cookie-settings-header {
    padding: 24px 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.cookie-settings-header h2 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
}

.cookie-settings-close {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.cookie-settings-close:hover {
    background-color: #f3f4f6;
}

.cookie-settings-body {
    padding: 0 24px;
}

.cookie-category {
    margin-bottom: 24px;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.cookie-category h4 {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
}

.cookie-category p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

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

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

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

input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

input:disabled + .toggle-slider {
    background-color: var(--primary-color);
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-settings-footer {
    padding: 20px 24px 24px;
    border-top: 1px solid var(--border-color);
    text-align: right;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }

    .cookie-buttons button {
        flex: 1;
        min-width: 0;
    }

    .cookie-text h3 {
        font-size: 18px;
    }

    .cookie-text p {
        font-size: 13px;
    }

    .cookie-settings-content {
        margin: 20px;
        width: calc(100% - 40px);
    }

    .cookie-settings-header,
    .cookie-settings-body,
    .cookie-settings-footer {
        padding-left: 16px;
        padding-right: 16px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: #FFFFFF;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

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

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
    list-style: none;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}

.nav-links a.active {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 2px;
}

/* Page link styling (same as nav-link but not affected by JS) */
.nav-page-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    transition: opacity 0.3s;
}

.nav-page-link:hover {
    opacity: 0.7;
}

.btn-signup {
    background-color: var(--primary-color);
    color: white !important;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-signup:hover {
    background-color: var(--accent-color);
}

/* Logo text styling */
.logo span {
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    padding: 80px 0 120px;
    text-align: center;
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.hero p {
    font-size: 24px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.3s;
}

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

/* Features Section */
.features {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    text-align: center;
}

.feature {
    padding: 0 20px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.feature h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.feature p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
}

.steps {
    max-width: 800px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 40px;
}

.step-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.step-content p {
    font-size: 18px;
    color: var(--text-secondary);
}

.step-arrow {
    width: 40px;
    height: 40px;
    margin: 20px auto;
    text-align: center;
}

/* Widget Preview Section */
.widget-preview {
    padding: 80px 0;
}

.widget-card {
    background-color: var(--bg-light);
    border-radius: 16px;
    padding: 60px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
}

.widget-card h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.score-circle {
    width: 200px;
    height: 200px;
    margin: 0 auto 32px;
    position: relative;
}

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

.score-circle-bg {
    fill: none;
    stroke: #E5E7EB;
    stroke-width: 20;
}

.score-circle-progress {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 20;
    stroke-linecap: round;
    stroke-dasharray: 502;
    stroke-dashoffset: 75;
    transition: stroke-dashoffset 1s ease;
}

.score-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 64px;
    font-weight: 700;
    color: var(--primary-color);
}

.score-label {
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.score-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.btn-view-report {
    background-color: var(--primary-color);
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.3s;
}

.btn-view-report:hover {
    background-color: var(--accent-color);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background-color: white;
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    border: 2px solid var(--border-color);
}

.pricing-card h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.price {
    font-size: 64px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
}

.pricing-features li {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
    text-align: left;
}

.pricing-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.btn-pricing {
    background-color: var(--primary-color);
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.3s;
    width: 100%;
}

.btn-pricing:hover {
    background-color: var(--accent-color);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 48px;
}

.faq-item h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer */
footer {
    padding: 60px 0 20px;
    background-color: var(--bg-light);
    color: var(--text-secondary);
    font-size: 14px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-section p {
    margin-bottom: 8px;
    line-height: 1.6;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 12px;
}

.footer-disclaimer {
    font-size: 12px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    color: var(--text-secondary);
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
}

.mobile-menu-toggle:hover {
    background-color: var(--bg-light);
    border-radius: 4px;
}

.hamburger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-links.mobile-open {
    display: flex;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        z-index: 1000;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 12px 16px;
        border-radius: 8px;
        margin-bottom: 8px;
        text-align: center;
    }
    
    .nav-links a:hover {
        background-color: var(--bg-light);
        opacity: 1;
    }
    
    .btn-signup {
        width: 100%;
        text-align: center;
        margin-top: 8px;
    }

    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 60px 0 80px;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 18px;
        padding: 0 10px;
    }

    .section-header h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .step {
        flex-direction: column;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .step-content h3 {
        font-size: 24px;
    }
    
    .step-content p {
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature h3 {
        font-size: 24px;
    }
    
    .feature p {
        font-size: 16px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
    
    .pricing-card h3 {
        font-size: 28px;
    }
    
    .price {
        font-size: 48px;
    }

    .widget-card {
        padding: 40px 20px;
    }
    
    .widget-card h3 {
        font-size: 28px;
    }
    
    .score-number {
        font-size: 48px;
    }
    
    .score-label {
        font-size: 24px;
    }
    
    .faq-item h3 {
        font-size: 24px;
    }
    
    .faq-item p {
        font-size: 16px;
    }
}

/* Tablet responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 52px;
    }
    
    .hero p {
        font-size: 22px;
    }
    
    .section-header h2 {
        font-size: 42px;
    }
    
    .features-grid {
        gap: 40px;
    }
    
    .steps {
        max-width: 700px;
    }
}

/* Small mobile responsive */
@media (max-width: 480px) {
    .hero {
        padding: 40px 0 60px;
    }
    
    .hero h1 {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .hero p {
        font-size: 16px;
        padding: 0 5px;
    }
    
    .btn-primary {
        padding: 14px 28px;
        font-size: 18px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .features {
        padding: 60px 0;
    }
    
    .how-it-works {
        padding: 60px 0;
    }
    
    .widget-preview {
        padding: 60px 0;
    }
    
    .pricing {
        padding: 60px 0;
    }
    
    .faq {
        padding: 60px 0;
    }
    
    .features-grid {
        gap: 32px;
    }
    
    .feature {
        padding: 0 10px;
    }
    
    .feature h3 {
        font-size: 22px;
    }
    
    .step-content h3 {
        font-size: 22px;
    }
    
    .widget-card {
        padding: 32px 16px;
    }
    
    .score-circle {
        width: 160px;
        height: 160px;
    }
    
    .score-number {
        font-size: 40px;
    }
    
    .score-label {
        font-size: 20px;
    }
    
    .pricing-card {
        padding: 28px 20px;
    }
    
    .pricing-card h3 {
        font-size: 24px;
    }
    
    .price {
        font-size: 40px;
    }
    
    .pricing-features li {
        font-size: 16px;
    }
    
    .btn-pricing {
        padding: 14px 24px;
        font-size: 18px;
    }
    
    .faq-item {
        margin-bottom: 32px;
    }
    
    .faq-item h3 {
        font-size: 22px;
    }
    
    .nav-links {
        padding: 16px;
    }
    
    .nav-links a {
        padding: 10px 12px;
        font-size: 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .footer-disclaimer {
        font-size: 11px;
    }
}

/* Extra small devices */
@media (max-width: 320px) {
    .container {
        padding: 0 12px;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    .hero p {
        font-size: 15px;
    }
    
    .btn-primary {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 22px;
    }
    
    .score-circle {
        width: 140px;
        height: 140px;
    }
    
    .score-number {
        font-size: 36px;
    }
}

/* Icon Styles */
.icon {
    display: inline-block;
}

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