/* Font Faces */
@font-face {
    font-family: 'Haffer HQ';
    src: url('./fonts/HafferRegular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Albert Sans';
    src: url('./fonts/AlbertSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Albert Sans';
    src: url('./fonts/AlbertSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Albert Sans';
    src: url('./fonts/AlbertSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables */
:root {
    --primary-blue: #0d181f;
    --dark-blue: #0d181f;
    --text-gray: #718096;
    --border-color: #e2e8f0;
    --orange: #F43F5E;
    --heading-font: 'Haffer HQ', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --body-font: 'Albert Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--body-font);
}

body {
    background-color: #f8f9fa;
    line-height: 1.5;
    font-family: var(--body-font);
}

/* Heading Styles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
}

h1 {
    font-weight: 400;
}

h2 {
    font-weight: 600;
}

h3 {
    font-weight: 600;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.navbar {
    background: white;
    padding: 0.75rem 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

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

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 35px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: #4a5568;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.2s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Buttons */
.btn-primary {
    background: var(--primary-blue);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-primary:hover {
    background: #172229;
}

.btn-secondary {
    background: #f7fafc;
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
}

/* Header */
.header {
    background: var(--dark-blue);
    color: white;
    padding: 4rem 2rem;
}

.header h1 {
    font-size: 1.25rem;
    font-weight: normal;
    margin-bottom: 0.5rem;
}

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

/* Progress Bar */
.progress-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    height: 8px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.progress-fill {
    background: white;
    height: 100%;
    transition: width 0.3s ease;
    width: 0;
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Checklist */
.checklist-container {
    max-width: 800px;
    margin: -2rem auto 2rem;
    padding: 0 1rem;
}

.checklist-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.section-header {
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-header:hover {
    background: #f8f9fa;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    color: #2d3748;
    font-family: var(--heading-font);
    font-weight: 600;
}

.section-progress {
    background: var(--primary-blue);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.85rem;
}

.section-content {
    padding: 1.25rem;
    display: none;
}

.section-content.active {
    display: block;
}

.task-item {
    display: flex;
    align-items: flex-start;
    padding: 0.75rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.task-item:hover {
    background: #f8f9fa;
}

.task-checkbox {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.task-label {
    cursor: pointer;
    color: #4a5568;
    font-size: 0.95rem;
    font-family: var(--body-font);
}

input[type="checkbox"]:checked + .task-label {
    text-decoration: line-through;
    color: var(--text-gray);
}

/* Share Progress */
.share-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.share-card h3 {
    color: var(--dark-blue);
    margin: 0 0 5px 0;
    font-family: var(--heading-font);
    font-weight: 600;
}

.share-card p {
    color: var(--text-gray);
    margin: 0;
    font-size: 14px;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Share Dialog */
.share-dialog {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    z-index: 1000;
    max-width: 500px;
    width: 90%;
}

.share-dialog h3 {
    margin: 0 0 15px 0;
    color: var(--dark-blue);
    font-family: var(--heading-font);
    font-weight: 600;
}

.share-content {
    margin-bottom: 20px;
}

.share-content p {
    margin: 0 0 10px 0;
    color: #4a5568;
}

.share-input-group {
    display: flex;
    gap: 10px;
}

.share-input {
    flex: 1;
    padding: 8px 12px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* Disclaimer */
.disclaimer-container {
    max-width: 800px;
    margin: 80px auto;
}

.disclaimer-card {
    background: #ffffff;
    border: 4px solid var(--dark-blue);
    box-shadow: 8px 8px 0 var(--orange);
    padding: 30px;
    position: relative;
    margin-bottom: 60px;
    font-family: var(--body-font);
}

.disclaimer-header {
    background: var(--dark-blue);
    color: #ffffff;
    padding: 8px 16px;
    display: inline-block;
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.disclaimer-content {
    color: var(--dark-blue);
    font-size: 16px;
    line-height: 1.6;
    margin-top: 15px;
}

.disclaimer-accent {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: #F43F5E;
}


/* CTA Section */
.cta-container {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.cta-card {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #1a252c 100%);
    border-radius: 16px;
    padding: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(13, 24, 31, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 73, 44, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, 50%);
}

.cta-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.25rem;
    color: white;
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #172229 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(13, 24, 31, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-button:hover {
    background: linear-gradient(135deg, #172229 0%, #1f2d35 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(13, 24, 31, 0.5);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button:hover::before {
    opacity: 1;
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: white;
    padding: 80px 20px 40px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.footer-column h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    font-family: var(--heading-font);
    font-weight: 600;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-link:hover {
    opacity: 1;
}

.help-section {
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.help-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.help-title {
    color: #333;
    margin: 0;
    font-size: 24px;
    font-family: var(--heading-font);
    font-weight: 600;
}

.help-link {
    color: var(--primary-blue);
    text-decoration: underline;
    font-size: 24px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.bottom-section {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo img {
    height: 35px;
    filter: brightness(0) invert(1);
}

.footer-links-section {
    display: flex;
    gap: 20px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.footer-copyright {
    color: rgba(255,255,255,0.8);
}

.footer-legal-link {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-legal-link:hover {
    opacity: 0.8;
}

.badges-section {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.badge-img {
    height: 80px;
    width: auto;
}

/* Utility Classes */
.text-white { color: white !important; }
.text-center { text-align: center !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.pt-4 { padding-top: 1.5rem !important; }
.w-100 { width: 100% !important; }
.bg-primary { background-color: var(--primary-blue) !important; }

/* Updated Footer Styles to Match Exact Uniqkey Design */

/* Contact Strip */
.footer-contact-strip {
    background: var(--dark-blue);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 0;
}

.contact-strip-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.contact-group {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.contact-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #2e383e;
    padding: 8px 14px;
    border-radius: 73px;
    height: auto;
    min-height: 28px;
}

.status-indicator {
    width: 12px;
    height: 12px;
    background: #38FB07;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-text {
    font-weight: 500;
    white-space: nowrap;
    color: white;
}

.contact-hours {
    font-weight: 400;
    opacity: 1;
    white-space: nowrap;
    color: white;
}

.phone-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
}

.phone-link:hover {
    text-decoration: underline;
}

/* Main Footer */
.footer {
    background: var(--dark-blue);
    color: white;
    padding: 0;
}

.footer-main {
    padding: 80px 0 40px 0;
}

/* Footer Header with Logo and CTA */
.footer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

.footer-logo-section {
    flex-shrink: 0;
}

.footer-logo svg {
    height: 52px;
    width: auto;
}

.footer-cta-buttons {
    display: flex;
    gap: 24px;
}

.footer-cta-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    min-width: 200px;
    gap: 12px;
}

.footer-cta-btn.primary {
    background: white;
    color: #111;
}

.footer-cta-btn.secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.footer-cta-btn .btn-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-cta-btn .btn-icon svg {
    width: 16px;
    height: 16px;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 80px;
    margin-bottom: 80px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 32px;
    font-family: var(--heading-font);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.2s ease;
    font-weight: 400;
}

.footer-link:hover {
    color: white;
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 40px;
}

.bottom-left {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.company-info {
    display: flex;
    align-items: center;
}

.company-name {
    color: white;
    font-weight: 500;
    font-size: 14px;
}

.bottom-navigation {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.bottom-nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.bottom-nav-link:hover {
    color: white;
}

.bottom-right {
    display: flex;
    align-items: center;
}

.social-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.social-title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 400;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: white;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.social-link:hover {
    opacity: 0.7;
}

.social-link img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

/* Company Description */
.company-description {
    margin-bottom: 32px;
}

.company-description p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    line-height: 1.6;
    margin: 0;
    max-width: 100%;
    font-weight: 400;
}

/* Legal Footer */
.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 20px;
    flex-wrap: wrap;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 400;
}

.legal-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.legal-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s ease;
}

.legal-link:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-cta-buttons {
        display: none;
    }
    
    .footer-header {
        justify-content: center;
        margin-bottom: 60px;
    }
    
    .footer-main {
        padding: 60px 0 40px 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .navbar {
        padding: 0.75rem 1rem;
    }

    .header {
        padding: 2rem 1rem;
    }

    .header h2 {
        font-size: 1.5rem;
    }

    .checklist-container {
        padding: 0 0.5rem;
    }

    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
        gap: 2rem;
    }

    .cta-content {
        margin-bottom: 0;
    }

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

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

    .cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }

    .contact-strip-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .contact-group {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .contact-pill {
        padding: 6px 12px;
        font-size: 13px;
        gap: 6px;
    }
    
    .footer-main {
        padding: 40px 0 30px 0;
    }
    
    .footer-header {
        margin-bottom: 40px;
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 40px;
    }
    
    .footer-column-title {
        margin-bottom: 20px;
        font-size: 16px;
    }
    
    .footer-links {
        gap: 12px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .bottom-left {
        flex-direction: column;
        gap: 20px;
    }
    
    .bottom-navigation {
        justify-content: center;
        gap: 20px;
    }
    
    .social-section {
        align-items: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
        gap: 16px;
    }

    .share-card {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        gap: 24px;
    }
    
    .footer-column-title {
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    .bottom-navigation {
        flex-direction: column;
        gap: 12px;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-cta-btn {
        min-width: 180px;
        padding: 12px 20px;
    }

    .contact-group {
        gap: 6px;
    }

    .contact-pill {
        padding: 5px 10px;
        font-size: 12px;
    }

    .cta-card {
        padding: 2rem 1.5rem;
        border-radius: 12px;
    }

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

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