/* Wrapper Scoping */
.ccl-hn-latitude--wrapper {
    --ccl-primary-blue: #1d63ff;
    --ccl-cta-blue: #0b5cff;
    --ccl-cta-dark: #0846c1;
    --ccl-accent-green: #10b981;
    --ccl-accent-gold: #ffa826;
    --ccl-ink: #1e293b;
    --ccl-muted: #64748b;
    --ccl-soft-border: #e5e7eb;
    --ccl-white: #ffffff;
    --ccl-off-white: #f8fafc;
    --ccl-danger: #ef4444;
    --ccl-section-padding: 100px;
    --ccl-card-padding: 36px;
    --ccl-gap-large: 32px;
    --ccl-gap-medium: 24px;
    --ccl-gap-small: 16px;

    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--ccl-ink);
    line-height: 1.6;
}

.ccl-hn-latitude--wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Hero Section */
.ccl-hn-latitude--hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, var(--ccl-primary-blue) 0%, var(--ccl-cta-blue) 100%);
    overflow: hidden;
}

.ccl-hn-latitude--hero::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: ccl-hn-latitude--float 8s ease-in-out infinite;
}

.ccl-hn-latitude--hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: ccl-hn-latitude--float 10s ease-in-out infinite reverse;
}

@keyframes ccl-hn-latitude--float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, 30px);
    }
}

.ccl-hn-latitude--hero-content {
    position: relative;
    z-index: 1;
    max-width: 950px;
    text-align: center;
    color: var(--ccl-white);
}

.ccl-hn-latitude--kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    margin-bottom: 24px;
    opacity: 0;
    animation: ccl-hn-latitude--fadeInDown 0.8s ease forwards;
}

.ccl-hn-latitude--hero h1 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    opacity: 0;
    animation: ccl-hn-latitude--fadeInUp 0.8s ease 0.2s forwards;
}

.ccl-hn-latitude--hero-lead {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
    opacity: 0;
    animation: ccl-hn-latitude--fadeInUp 0.8s ease 0.4s forwards;
}

.ccl-hn-latitude--hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
    opacity: 0;
    animation: ccl-hn-latitude--fadeInUp 0.8s ease 0.6s forwards;
}

.ccl-hn-latitude--hero-stats {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: ccl-hn-latitude--fadeInUp 0.8s ease 0.8s forwards;
}

.ccl-hn-latitude--stat-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    font-weight: 600;
    font-size: 15px;
}

.ccl-hn-latitude--stat-badge i {
    font-size: 20px;
}

@keyframes ccl-hn-latitude--fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ccl-hn-latitude--fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.ccl-hn-latitude--btn {
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ccl-hn-latitude--btn--primary {
    background: var(--ccl-white);
    color: var(--ccl-cta-blue);
}

.ccl-hn-latitude--btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.ccl-hn-latitude--btn--secondary {
    background: transparent;
    color: var(--ccl-white);
    border: 2px solid var(--ccl-white);
}

.ccl-hn-latitude--btn--secondary:hover {
    background: var(--ccl-white);
    color: var(--ccl-cta-blue);
}

.ccl-hn-latitude--btn--cta {
    background: linear-gradient(135deg, var(--ccl-cta-blue), var(--ccl-cta-dark));
    color: var(--ccl-white);
}

.ccl-hn-latitude--btn--cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(29, 99, 255, 0.4);
}

.ccl-hn-latitude--btn--full {
    width: 100%;
}

/* Action Banner */
.ccl-hn-latitude--action-banner {
    background: linear-gradient(135deg, #ffa826 0%, #ff8800 100%);
    padding: 60px 20px;
    position: relative;
    border-top: 4px solid #ff8800;
    border-bottom: 4px solid #ff8800;
}

.ccl-hn-latitude--action-banner-content {
    max-width: 1200px;
    margin: 0 auto;
}

.ccl-hn-latitude--action-banner-header {
    text-align: center;
    margin-bottom: 48px;
    color: var(--ccl-white);
}

.ccl-hn-latitude--action-banner-header h4 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 12px;
}

.ccl-hn-latitude--action-banner-header p {
    font-size: 18px;
    opacity: 0.95;
}

.ccl-hn-latitude--action-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.ccl-hn-latitude--action-card {
    background: var(--ccl-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.ccl-hn-latitude--action-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.ccl-hn-latitude--action-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
    color: var(--ccl-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(29, 99, 255, 0.3);
}

.ccl-hn-latitude--action-card h5 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--ccl-ink);
}

.ccl-hn-latitude--action-card p {
    color: var(--ccl-muted);
    line-height: 1.6;
}

.ccl-hn-latitude--urgency-bar {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    color: var(--ccl-white);
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.ccl-hn-latitude--urgency-bar i {
    font-size: 20px;
    animation: ccl-hn-latitude--pulse 2s ease-in-out infinite;
}

@keyframes ccl-hn-latitude--pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* EOI Form Section */
.ccl-hn-latitude--eoi-section {
    background: var(--ccl-off-white);
    padding: 80px 20px;
}

.ccl-hn-latitude--eoi-container {
    max-width: 900px;
    margin: 0 auto;
}

.ccl-hn-latitude--eoi-header {
    text-align: center;
    margin-bottom: 48px;
}

.ccl-hn-latitude--eoi-header h2 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--ccl-ink);
}

.ccl-hn-latitude--eoi-header p {
    font-size: 18px;
    color: var(--ccl-muted);
    line-height: 1.7;
}

.ccl-hn-latitude--eoi-form {
    background: var(--ccl-white);
    border: 2px solid var(--ccl-soft-border);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.ccl-hn-latitude--form-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 2px solid var(--ccl-soft-border);
}

.ccl-hn-latitude--form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.ccl-hn-latitude--form-section h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--ccl-ink);
    display: flex;
    align-items: center;
    gap: 12px;
}

.ccl-hn-latitude--form-section h3::before {
    content: '';
    width: 4px;
    height: 28px;
    background: linear-gradient(135deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
    border-radius: 2px;
}

.ccl-hn-latitude--form-group {
    margin-bottom: 24px;
}

.ccl-hn-latitude--form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--ccl-ink);
    font-size: 15px;
}

.ccl-hn-latitude--form-input,
.ccl-hn-latitude--form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--ccl-soft-border);
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: var(--ccl-white);
    color: var(--ccl-ink);
}

.ccl-hn-latitude--form-input:focus,
.ccl-hn-latitude--form-textarea:focus {
    outline: none;
    border-color: var(--ccl-primary-blue);
    box-shadow: 0 0 0 3px rgba(29, 99, 255, 0.1);
}

.ccl-hn-latitude--form-textarea {
    resize: vertical;
    min-height: 120px;
}

.ccl-hn-latitude--form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.ccl-hn-latitude--radio-group,
.ccl-hn-latitude--checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ccl-hn-latitude--radio-label,
.ccl-hn-latitude--checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 12px 16px;
    border: 2px solid var(--ccl-soft-border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.ccl-hn-latitude--radio-label:hover,
.ccl-hn-latitude--checkbox-label:hover {
    border-color: var(--ccl-primary-blue);
    background: var(--ccl-off-white);
}

.ccl-hn-latitude--radio-label input[type="radio"],
.ccl-hn-latitude--checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--ccl-primary-blue);
}

.ccl-hn-latitude--radio-label span,
.ccl-hn-latitude--checkbox-label span {
    color: var(--ccl-ink);
    font-size: 15px;
}

.ccl-hn-latitude--consent-box {
    background: var(--ccl-off-white);
    border: 2px solid var(--ccl-primary-blue);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
}

.ccl-hn-latitude--checkbox-label--large {
    padding: 0;
    border: none;
    align-items: flex-start;
}

.ccl-hn-latitude--checkbox-label--large:hover {
    background: transparent;
}

.ccl-hn-latitude--checkbox-label--large input[type="checkbox"] {
    margin-top: 4px;
    flex-shrink: 0;
}

.ccl-hn-latitude--checkbox-label--large span {
    line-height: 1.7;
}

.ccl-hn-latitude--checkbox-label--large a {
    color: var(--ccl-primary-blue);
    text-decoration: underline;
    font-weight: 600;
}

.ccl-hn-latitude--btn--large {
    width: 100%;
    padding: 18px 36px;
    font-size: 18px;
}

.ccl-hn-latitude--eoi-success {
    background: var(--ccl-white);
    border: 2px solid var(--ccl-soft-border);
    border-radius: 16px;
    padding: 64px 48px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.ccl-hn-latitude--success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ccl-accent-green), #059669);
    color: var(--ccl-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 24px;
    animation: ccl-hn-latitude--scaleIn 0.5s ease;
}

@keyframes ccl-hn-latitude--scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.ccl-hn-latitude--eoi-success h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--ccl-ink);
}

.ccl-hn-latitude--eoi-success p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--ccl-muted);
    margin-bottom: 16px;
}

.ccl-hn-latitude--eoi-success p:last-child {
    margin-bottom: 0;
}

/* Wizard Progress Bar */
.ccl-hn-latitude--wizard-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    position: relative;
    padding: 0 20px;
}

.ccl-hn-latitude--wizard-progress::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: var(--ccl-soft-border);
    z-index: 1;
}

.ccl-hn-latitude--wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.ccl-hn-latitude--wizard-step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--ccl-white);
    border: 2px solid var(--ccl-soft-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--ccl-muted);
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.ccl-hn-latitude--wizard-step.active .ccl-hn-latitude--wizard-step-circle {
    background: linear-gradient(135deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
    color: var(--ccl-white);
    border-color: var(--ccl-primary-blue);
    transform: scale(1.15);
}

.ccl-hn-latitude--wizard-step.completed .ccl-hn-latitude--wizard-step-circle {
    background: var(--ccl-accent-green);
    color: var(--ccl-white);
    border-color: var(--ccl-accent-green);
}

.ccl-hn-latitude--wizard-step-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--ccl-muted);
    text-align: center;
}

.ccl-hn-latitude--wizard-step.active .ccl-hn-latitude--wizard-step-label {
    color: var(--ccl-primary-blue);
}

/* Wizard Pages */
.ccl-hn-latitude--wizard-page {
    display: none;
}

.ccl-hn-latitude--wizard-page.active {
    display: block;
    animation: ccl-hn-latitude--wizardFadeIn 0.4s ease;
}

@keyframes ccl-hn-latitude--wizardFadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.ccl-hn-latitude--wizard-page h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--ccl-ink);
}

.ccl-hn-latitude--wizard-subtitle {
    font-size: 16px;
    color: var(--ccl-muted);
    margin-bottom: 32px;
}

.ccl-hn-latitude--wizard-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px solid var(--ccl-soft-border);
}

.ccl-hn-latitude--wizard-actions .ccl-hn-latitude--btn {
    flex: 1;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
}

.ccl-hn-latitude--wizard-actions .ccl-hn-latitude--btn--secondary {
    flex: 0 0 auto;
    min-width: 150px;
    background: var(--ccl-off-white) !important;
    color: var(--ccl-ink) !important;
    border: 2px solid var(--ccl-soft-border) !important;
}

.ccl-hn-latitude--wizard-actions .ccl-hn-latitude--btn--secondary:hover {
    background: var(--ccl-white) !important;
    border-color: var(--ccl-primary-blue) !important;
    color: var(--ccl-primary-blue) !important;
    transform: translateY(-2px);
}

.ccl-hn-latitude--wizard-actions .ccl-hn-latitude--btn--cta {
    background: linear-gradient(135deg, var(--ccl-cta-blue), var(--ccl-cta-dark));
    color: var(--ccl-white);
    border: none;
}

.ccl-hn-latitude--wizard-actions .ccl-hn-latitude--btn--cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(29, 99, 255, 0.4);
}

/* Section Base */
.ccl-hn-latitude--section {
    padding: var(--ccl-section-padding) 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.ccl-hn-latitude--section-header {
    text-align: center;
    margin-bottom: 64px;
}

.ccl-hn-latitude--section-kicker {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--ccl-primary-blue);
    margin-bottom: 16px;
}

.ccl-hn-latitude--section h2 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--ccl-ink);
}

.ccl-hn-latitude--section-lead {
    font-size: 20px;
    line-height: 1.7;
    color: var(--ccl-muted);
    max-width: 800px;
    margin: 0 auto;
}

/* Eligibility Section */
.ccl-hn-latitude--eligibility-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
}

.ccl-hn-latitude--eligibility-main h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--ccl-ink);
}

.ccl-hn-latitude--requirement-card {
    position: relative;
    background: var(--ccl-white);
    border: 2px solid var(--ccl-soft-border);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
    display: flex;
    gap: 24px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.ccl-hn-latitude--requirement-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(135deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
    transition: width 0.3s ease;
}

.ccl-hn-latitude--requirement-card:hover {
    transform: translateX(8px);
    border-color: var(--ccl-primary-blue);
    box-shadow: 0 8px 24px rgba(29, 99, 255, 0.1);
}

.ccl-hn-latitude--requirement-card:hover::before {
    width: 4px;
}

.ccl-hn-latitude--requirement-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ccl-white);
    font-size: 28px;
    transition: all 0.3s ease;
}

.ccl-hn-latitude--requirement-card:hover .ccl-hn-latitude--requirement-icon {
    transform: scale(1.1) rotate(5deg);
}

.ccl-hn-latitude--requirement-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--ccl-ink);
}

.ccl-hn-latitude--requirement-content p {
    color: var(--ccl-muted);
    line-height: 1.7;
}

.ccl-hn-latitude--eligibility-note {
    background: linear-gradient(135deg, #ffa826 0%, #ff8800 100%);
    border: 3px solid #ff8800;
    border-radius: 12px;
    padding: 32px;
    margin-top: 32px;
    position: relative;
    color: var(--ccl-white);
}

.ccl-hn-latitude--eligibility-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--ccl-white);
    opacity: 0.3;
}

.ccl-hn-latitude--eligibility-note h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
}

.ccl-hn-latitude--eligibility-note p {
    line-height: 1.7;
    opacity: 0.95;
}

.ccl-hn-latitude--eligibility-note strong {
    font-weight: 700;
}

.ccl-hn-latitude--eligibility-note a {
    color: var(--ccl-white);
    text-decoration: underline;
}

/* Sidebar */
.ccl-hn-latitude--eligibility-sidebar {
    height: fit-content;
}

.ccl-hn-latitude--sidebar-widget {
    background: var(--ccl-white);
    border: 2px solid var(--ccl-soft-border);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
}

.ccl-hn-latitude--sidebar-widget--highlighted {
    background: linear-gradient(135deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
    border: 3px solid var(--ccl-cta-blue);
    color: var(--ccl-white);
}

.ccl-hn-latitude--sidebar-widget h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
}

.ccl-hn-latitude--sidebar-widget--highlighted h4 {
    color: var(--ccl-white);
}

.ccl-hn-latitude--checklist {
    list-style: none;
    margin-bottom: 24px;
}

.ccl-hn-latitude--checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.ccl-hn-latitude--checklist li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--ccl-accent-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.ccl-hn-latitude--sidebar-widget--highlighted .ccl-hn-latitude--checklist li::before {
    color: var(--ccl-white);
}

.ccl-hn-latitude--sidebar-widget p {
    color: var(--ccl-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.ccl-hn-latitude--sidebar-widget--highlighted p {
    color: var(--ccl-white);
    opacity: 0.95;
}

.ccl-hn-latitude--phone-large {
    display: block;
    text-align: center;
    font-size: 28px;
    font-weight: 900;
    color: var(--ccl-primary-blue);
    text-decoration: none;
    margin-top: 16px;
}

/* Scenarios Grid */
.ccl-hn-latitude--scenarios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.ccl-hn-latitude--scenario-card {
    position: relative;
    background: var(--ccl-white);
    border: 2px solid var(--ccl-soft-border);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.ccl-hn-latitude--scenario-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(135deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
    transition: height 0.3s ease;
}

.ccl-hn-latitude--scenario-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(29, 99, 255, 0.15);
}

.ccl-hn-latitude--scenario-card:hover::before {
    height: 4px;
}

.ccl-hn-latitude--scenario-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.ccl-hn-latitude--scenario-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ccl-white);
    font-size: 32px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.ccl-hn-latitude--scenario-card:hover .ccl-hn-latitude--scenario-icon {
    transform: rotate(5deg) scale(1.1);
}

.ccl-hn-latitude--scenario-header h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--ccl-ink);
}

.ccl-hn-latitude--scenario-card p {
    color: var(--ccl-muted);
    line-height: 1.7;
}

/* Damages Section */
.ccl-hn-latitude--damages-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
}

.ccl-hn-latitude--damage-card {
    display: flex;
    gap: 24px;
    background: var(--ccl-white);
    border: 2px solid var(--ccl-soft-border);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.ccl-hn-latitude--damage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(29, 99, 255, 0.1);
    border-color: var(--ccl-primary-blue);
}

.ccl-hn-latitude--damage-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ccl-white);
    font-size: 32px;
    transition: all 0.3s ease;
}

.ccl-hn-latitude--damage-card:hover .ccl-hn-latitude--damage-icon {
    transform: scale(1.1) rotate(5deg);
}

.ccl-hn-latitude--damage-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--ccl-ink);
}

.ccl-hn-latitude--damage-content p {
    color: var(--ccl-muted);
    line-height: 1.7;
}

.ccl-hn-latitude--damages-sidebar-box {
    background: var(--ccl-white);
    border: 2px solid var(--ccl-soft-border);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
}

.ccl-hn-latitude--damages-sidebar-box--blue {
    background: linear-gradient(135deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
    color: var(--ccl-white);
    border: 3px solid var(--ccl-cta-blue);
}

.ccl-hn-latitude--damages-sidebar-box--bordered {
    border: 3px solid var(--ccl-primary-blue);
}

.ccl-hn-latitude--damages-sidebar-box h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
}

.ccl-hn-latitude--damages-sidebar-box p {
    line-height: 1.7;
    margin-bottom: 16px;
}

.ccl-hn-latitude--damages-sidebar-box--blue h4,
.ccl-hn-latitude--damages-sidebar-box--blue p {
    color: var(--ccl-white) !important;
}

.ccl-hn-latitude--damages-sidebar-box--blue p {
    opacity: 0.95;
}

.ccl-hn-latitude--damages-sidebar-box:not(.ccl-hn-latitude--damages-sidebar-box--blue) p {
    color: var(--ccl-muted);
}

.ccl-hn-latitude--damages-sidebar-box:not(.ccl-hn-latitude--damages-sidebar-box--blue) h4 {
    color: var(--ccl-ink);
}

/* Time Limits */
.ccl-hn-latitude--timeline-container {
    position: relative;
    padding: 48px 0;
}

.ccl-hn-latitude--timeline-container::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--ccl-soft-border);
}

.ccl-hn-latitude--timeline-item {
    position: relative;
    padding-left: 140px;
    margin-bottom: 48px;
}

.ccl-hn-latitude--timeline-badge {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--ccl-white);
    font-weight: 900;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.4);
    z-index: 2;
}

.ccl-hn-latitude--timeline-badge--urgent {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    animation: ccl-hn-latitude--pulse-glow 2s ease-in-out infinite;
}

.ccl-hn-latitude--timeline-badge--important {
    background: linear-gradient(135deg, #ffa826, #ff8800);
}

.ccl-hn-latitude--timeline-badge--standard {
    background: linear-gradient(135deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
}

@keyframes ccl-hn-latitude--pulse-glow {

    0%,
    100% {
        box-shadow: 0 4px 16px rgba(239, 68, 68, 0.4);
    }

    50% {
        box-shadow: 0 4px 24px rgba(239, 68, 68, 0.7);
    }
}

.ccl-hn-latitude--timeline-badge-number {
    font-size: 32px;
    line-height: 1;
}

.ccl-hn-latitude--timeline-badge-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.ccl-hn-latitude--timeline-content {
    background: var(--ccl-white);
    border: 2px solid var(--ccl-soft-border);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
}

.ccl-hn-latitude--timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.ccl-hn-latitude--urgency-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.ccl-hn-latitude--urgency-tag--critical {
    background: #fee2e2;
    color: #dc2626;
}

.ccl-hn-latitude--urgency-tag--high {
    background: #fef3c7;
    color: #d97706;
}

.ccl-hn-latitude--urgency-tag--medium {
    background: #dbeafe;
    color: #2563eb;
}

.ccl-hn-latitude--timeline-content h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--ccl-ink);
}

.ccl-hn-latitude--timeline-content p {
    color: var(--ccl-muted);
    line-height: 1.7;
}

.ccl-hn-latitude--time-limits-cta {
    position: relative;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 12px;
    padding: 48px;
    text-align: center;
    color: var(--ccl-white);
    margin-top: 48px;
    overflow: hidden;
}

.ccl-hn-latitude--time-limits-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.ccl-hn-latitude--time-limits-cta h4 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 16px;
}

.ccl-hn-latitude--time-limits-cta h4 i {
    animation: ccl-hn-latitude--spin 3s linear infinite;
}

@keyframes ccl-hn-latitude--spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.ccl-hn-latitude--time-limits-cta p {
    position: relative;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
    opacity: 0.95;
}

.ccl-hn-latitude--time-limits-cta strong {
    font-weight: 800;
}

/* Process Steps */
.ccl-hn-latitude--process-container {
    position: relative;
    padding: 48px 0;
}

.ccl-hn-latitude--process-container::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--ccl-soft-border);
}

.ccl-hn-latitude--process-step {
    position: relative;
    padding-left: 160px;
    margin-bottom: 48px;
}

.ccl-hn-latitude--process-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ccl-white);
    font-size: 40px;
    font-weight: 900;
    box-shadow: 0 4px 16px rgba(29, 99, 255, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
}

.ccl-hn-latitude--process-step:hover .ccl-hn-latitude--process-number {
    transform: scale(1.1) rotate(5deg);
}

.ccl-hn-latitude--process-content {
    position: relative;
    background: var(--ccl-white);
    border: 2px solid var(--ccl-soft-border);
    border-radius: 12px;
    padding: 36px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.ccl-hn-latitude--process-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transition: left 0.6s ease;
}

.ccl-hn-latitude--process-step:hover .ccl-hn-latitude--process-content {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(29, 99, 255, 0.1);
}

.ccl-hn-latitude--process-step:hover .ccl-hn-latitude--process-content::before {
    left: 100%;
}

.ccl-hn-latitude--process-content h3 {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--ccl-ink);
}

.ccl-hn-latitude--process-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ccl-white);
    font-size: 24px;
    transition: all 0.3s ease;
}

.ccl-hn-latitude--process-step:hover .ccl-hn-latitude--process-icon {
    transform: rotate(5deg);
}

.ccl-hn-latitude--process-content p {
    color: var(--ccl-muted);
    line-height: 1.7;
}

.ccl-hn-latitude--process-highlight {
    color: var(--ccl-primary-blue);
    font-weight: 600;
}

.ccl-hn-latitude--process-completion {
    background: linear-gradient(135deg, var(--ccl-accent-green), #059669);
    border-radius: 12px;
    padding: 48px;
    text-align: center;
    color: var(--ccl-white);
    margin-top: 48px;
}

.ccl-hn-latitude--process-completion h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 16px;
}

.ccl-hn-latitude--process-completion p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
    opacity: 0.95;
}

/* Evidence Grid */
.ccl-hn-latitude--evidence-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.ccl-hn-latitude--evidence-card {
    background: var(--ccl-white);
    border: 2px solid var(--ccl-soft-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ccl-hn-latitude--evidence-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(29, 99, 255, 0.15);
    border-color: var(--ccl-primary-blue);
}

.ccl-hn-latitude--evidence-header {
    background: linear-gradient(135deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
    padding: 32px;
    text-align: center;
    color: var(--ccl-white);
}

.ccl-hn-latitude--evidence-header i {
    font-size: 64px;
    margin-bottom: 16px;
    display: block;
}

.ccl-hn-latitude--evidence-header h4 {
    font-size: 20px;
    font-weight: 800;
}

.ccl-hn-latitude--evidence-body {
    padding: 32px;
}

.ccl-hn-latitude--evidence-checklist {
    list-style: none;
}

.ccl-hn-latitude--evidence-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--ccl-muted);
    line-height: 1.6;
}

.ccl-hn-latitude--evidence-checklist li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--ccl-accent-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.ccl-hn-latitude--evidence-cta {
    background: linear-gradient(135deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
    border-radius: 12px;
    padding: 48px;
    text-align: center;
    color: var(--ccl-white);
}

.ccl-hn-latitude--evidence-cta h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 16px;
}

.ccl-hn-latitude--evidence-cta p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
    opacity: 0.95;
}

/* Fees Section */
.ccl-hn-latitude--fees-content {
    background: var(--ccl-white);
    border: 2px solid var(--ccl-soft-border);
    border-radius: 12px;
    padding: 48px;
}

.ccl-hn-latitude--fees-highlight {
    background: linear-gradient(135deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
    border-left: 4px solid var(--ccl-cta-dark);
    border-radius: 8px;
    padding: 32px;
    margin-bottom: 48px;
    color: var(--ccl-white);
}

.ccl-hn-latitude--fees-highlight h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--ccl-white) !important;
}

.ccl-hn-latitude--fees-highlight p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
    color: var(--ccl-white) !important;
}

.ccl-hn-latitude--fees-content h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--ccl-ink);
}

.ccl-hn-latitude--fees-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.ccl-hn-latitude--fees-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ccl-hn-latitude--fees-item i {
    color: var(--ccl-accent-green);
    font-size: 20px;
    margin-top: 2px;
}

.ccl-hn-latitude--fees-item span {
    color: var(--ccl-muted);
    line-height: 1.6;
}

.ccl-hn-latitude--fees-footnote {
    font-size: 14px;
    color: var(--ccl-muted);
    line-height: 1.6;
    margin-bottom: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--ccl-soft-border);
}

.ccl-hn-latitude--fees-alert {
    background: linear-gradient(135deg, #ffa826, #ff8800);
    border-radius: 8px;
    padding: 24px;
    color: var(--ccl-white);
}

.ccl-hn-latitude--fees-alert h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
}

.ccl-hn-latitude--fees-alert p {
    line-height: 1.7;
    opacity: 0.95;
}

.ccl-hn-latitude--fees-alert a {
    color: var(--ccl-white);
    text-decoration: underline;
    font-weight: 700;
}

/* Why Choose Us */
.ccl-hn-latitude--why-hero {
    background: linear-gradient(135deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
    border: 3px solid var(--ccl-cta-blue);
    border-radius: 12px;
    padding: 48px;
    margin-bottom: 48px;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 32px;
    align-items: center;
    color: var(--ccl-white);
}

.ccl-hn-latitude--why-hero-icon {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
}

.ccl-hn-latitude--why-hero h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 16px;
}

.ccl-hn-latitude--why-hero p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
}

.ccl-hn-latitude--why-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.ccl-hn-latitude--why-feature {
    display: flex;
    gap: 24px;
    background: var(--ccl-white);
    border: 2px solid var(--ccl-soft-border);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
}

.ccl-hn-latitude--why-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(29, 99, 255, 0.15);
    border-color: var(--ccl-primary-blue);
}

.ccl-hn-latitude--why-feature-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ccl-white);
    font-size: 32px;
    transition: all 0.3s ease;
}

.ccl-hn-latitude--why-feature:hover .ccl-hn-latitude--why-feature-icon {
    transform: rotate(5deg) scale(1.1);
}

.ccl-hn-latitude--why-feature h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--ccl-ink);
}

.ccl-hn-latitude--why-feature p {
    color: var(--ccl-muted);
    line-height: 1.7;
}

.ccl-hn-latitude--comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.ccl-hn-latitude--comparison-column {
    background: var(--ccl-white);
    border: 2px solid var(--ccl-soft-border);
    border-radius: 12px;
    padding: 36px;
}

.ccl-hn-latitude--comparison-column--featured {
    border: 3px solid var(--ccl-primary-blue);
    position: relative;
}

.ccl-hn-latitude--comparison-column--featured::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
    color: var(--ccl-white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.ccl-hn-latitude--comparison-column h4 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
    text-align: center;
    color: var(--ccl-ink);
}

.ccl-hn-latitude--comparison-column--gray h4 {
    color: var(--ccl-muted);
}

.ccl-hn-latitude--comparison-list {
    list-style: none;
}

.ccl-hn-latitude--comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    line-height: 1.6;
    color: var(--ccl-muted);
}

.ccl-hn-latitude--comparison-list li i {
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.ccl-hn-latitude--comparison-column--gray .ccl-hn-latitude--comparison-list li i {
    color: #ef4444;
}

.ccl-hn-latitude--comparison-column--featured .ccl-hn-latitude--comparison-list li i {
    color: var(--ccl-accent-green);
}

/* FAQ Section */
.ccl-hn-latitude--faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.ccl-hn-latitude--faq-item {
    background: var(--ccl-white);
    border: 2px solid var(--ccl-soft-border);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ccl-hn-latitude--faq-question {
    width: 100%;
    text-align: left;
    padding: 24px;
    font-size: 18px;
    font-weight: 700;
    color: var(--ccl-ink);
    background: var(--ccl-white);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.ccl-hn-latitude--faq-question:hover {
    color: var(--ccl-primary-blue);
}

.ccl-hn-latitude--faq-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--ccl-off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ccl-muted);
    transition: all 0.3s ease;
}

.ccl-hn-latitude--faq-icon i {
    transition: transform 0.3s ease;
}

.ccl-hn-latitude--faq-item.active .ccl-hn-latitude--faq-icon {
    background: linear-gradient(135deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
    color: var(--ccl-white);
}

.ccl-hn-latitude--faq-item.active .ccl-hn-latitude--faq-icon i {
    transform: rotate(180deg);
}

.ccl-hn-latitude--faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.ccl-hn-latitude--faq-item.active .ccl-hn-latitude--faq-answer {
    max-height: 500px;
}

.ccl-hn-latitude--faq-answer-content {
    padding: 0 24px 24px;
    color: var(--ccl-muted);
    line-height: 1.7;
}

/* Resources Section */
.ccl-hn-latitude--resources-grid {
    margin-bottom: 48px;
}

.ccl-hn-latitude--resource-card {
    background: var(--ccl-white);
    border: 2px solid var(--ccl-soft-border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 32px;
    transition: all 0.3s ease;
}

.ccl-hn-latitude--resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.ccl-hn-latitude--resource-card--featured {
    display: grid;
    grid-template-columns: 300px 1fr;
}

.ccl-hn-latitude--resource-visual {
    background: linear-gradient(135deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ccl-white);
    font-size: 80px;
    min-height: 180px;
}

.ccl-hn-latitude--resource-visual--large {
    font-size: 120px;
    min-height: 300px;
}

.ccl-hn-latitude--resource-content {
    padding: 36px;
}

.ccl-hn-latitude--resource-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--ccl-off-white);
    color: var(--ccl-primary-blue);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.ccl-hn-latitude--resource-content h4 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--ccl-ink);
}

.ccl-hn-latitude--resource-card--featured .ccl-hn-latitude--resource-content h4 {
    font-size: 32px;
}

.ccl-hn-latitude--resource-content p {
    color: var(--ccl-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.ccl-hn-latitude--resource-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ccl-primary-blue);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ccl-hn-latitude--resource-link:hover {
    gap: 12px;
}

.ccl-hn-latitude--resources-secondary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.ccl-hn-latitude--resources-cta {
    position: relative;
    background: linear-gradient(135deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
    border-radius: 12px;
    padding: 48px;
    text-align: center;
    color: var(--ccl-white);
    overflow: hidden;
}

.ccl-hn-latitude--resources-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.ccl-hn-latitude--resources-cta h3 {
    position: relative;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 16px;
}

.ccl-hn-latitude--resources-cta p {
    position: relative;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
    opacity: 0.95;
}

/* Footer */
.ccl-hn-latitude--footer {
    background: var(--ccl-ink);
    color: var(--ccl-white);
    padding: 60px 20px 30px;
}

.ccl-hn-latitude--footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.ccl-hn-latitude--footer h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.ccl-hn-latitude--footer ul {
    list-style: none;
}

.ccl-hn-latitude--footer ul li {
    margin-bottom: 12px;
}

.ccl-hn-latitude--footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ccl-hn-latitude--footer a:hover {
    color: var(--ccl-white);
}

.ccl-hn-latitude--footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.ccl-hn-latitude--social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.ccl-hn-latitude--social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ccl-white);
    transition: all 0.3s ease;
}

.ccl-hn-latitude--social-links a:hover {
    background: var(--ccl-primary-blue);
    transform: translateY(-3px);
}

/* Scroll Reveal */
.ccl-hn-latitude--reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.ccl-hn-latitude--reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ccl-hn-latitude--wrapper .ccl-hn-latitude--section h2 {
        font-size: 40px;
    }

    .ccl-hn-latitude--wrapper .ccl-hn-latitude--eligibility-layout,
    .ccl-hn-latitude--wrapper .ccl-hn-latitude--damages-layout {
        grid-template-columns: 1fr;
    }

    .ccl-hn-latitude--wrapper .ccl-hn-latitude--eligibility-sidebar {
        position: static;
    }

    .ccl-hn-latitude--wrapper .ccl-hn-latitude--evidence-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ccl-hn-latitude--wrapper .ccl-hn-latitude--fees-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ccl-hn-latitude--wrapper .ccl-hn-latitude--hero {
        min-height: 500px;
        padding: 80px 20px 60px;
    }

    .ccl-hn-latitude--wrapper .ccl-hn-latitude--hero h1 {
        font-size: 36px;
    }

    .ccl-hn-latitude--wrapper .ccl-hn-latitude--hero-lead {
        font-size: 18px;
    }

    .ccl-hn-latitude--wrapper .ccl-hn-latitude--hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .ccl-hn-latitude--wrapper .ccl-hn-latitude--hero-ctas .ccl-hn-latitude--btn {
        width: 100%;
    }

    .ccl-hn-latitude--wrapper .ccl-hn-latitude--section {
        padding: 60px 20px;
    }

    .ccl-hn-latitude--wrapper .ccl-hn-latitude--section h2 {
        font-size: 32px;
    }

    .ccl-hn-latitude--wrapper .ccl-hn-latitude--action-grid {
        grid-template-columns: 1fr;
    }

    .ccl-hn-latitude--wrapper .ccl-hn-latitude--scenarios-grid,
    .ccl-hn-latitude--wrapper .ccl-hn-latitude--evidence-grid,
    .ccl-hn-latitude--wrapper .ccl-hn-latitude--why-features,
    .ccl-hn-latitude--wrapper .ccl-hn-latitude--comparison,
    .ccl-hn-latitude--wrapper .ccl-hn-latitude--resources-secondary {
        grid-template-columns: 1fr;
    }

    .ccl-hn-latitude--wrapper .ccl-hn-latitude--timeline-container::before {
        left: 20px;
    }

    .ccl-hn-latitude--wrapper .ccl-hn-latitude--timeline-item {
        padding-left: 100px;
    }

    .ccl-hn-latitude--wrapper .ccl-hn-latitude--timeline-badge {
        width: 60px;
        height: 60px;
    }

    .ccl-hn-latitude--wrapper .ccl-hn-latitude--process-container::before {
        left: 25px;
    }

    .ccl-hn-latitude--wrapper .ccl-hn-latitude--process-step {
        padding-left: 100px;
    }

    .ccl-hn-latitude--wrapper .ccl-hn-latitude--process-number {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .ccl-hn-latitude--wrapper .ccl-hn-latitude--fees-list {
        grid-template-columns: 1fr;
    }

    .ccl-hn-latitude--wrapper .ccl-hn-latitude--eoi-form {
        padding: 32px 24px;
    }

    .ccl-hn-latitude--wrapper .ccl-hn-latitude--form-row {
        grid-template-columns: 1fr;
    }

    .ccl-hn-latitude--wrapper .ccl-hn-latitude--radio-group {
        gap: 10px;
    }

    .ccl-hn-latitude--wrapper .ccl-hn-latitude--wizard-progress {
        padding: 0 10px;
    }

    .ccl-hn-latitude--wrapper .ccl-hn-latitude--wizard-progress::before {
        left: 40px;
        right: 40px;
    }

    .ccl-hn-latitude--wrapper .ccl-hn-latitude--wizard-step-label {
        font-size: 11px;
    }

    .ccl-hn-latitude--wrapper .ccl-hn-latitude--wizard-step-circle {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .ccl-hn-latitude--wrapper .ccl-hn-latitude--wizard-actions {
        flex-direction: column-reverse;
    }

    .ccl-hn-latitude--wrapper .ccl-hn-latitude--wizard-actions .ccl-hn-latitude--btn {
        width: 100%;
        min-width: auto;
    }

    .ccl-hn-latitude--wrapper .ccl-hn-latitude--wizard-actions .ccl-hn-latitude--btn--secondary {
        width: 100%;
        min-width: auto;
    }

    .ccl-hn-latitude--wrapper .ccl-hn-latitude--why-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ccl-hn-latitude--wrapper .ccl-hn-latitude--why-hero-icon {
        margin: 0 auto;
    }

    .ccl-hn-latitude--wrapper .ccl-hn-latitude--resource-card--featured {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .ccl-hn-latitude--wrapper .ccl-hn-latitude--hero h1 {
        font-size: 28px;
    }

    .ccl-hn-latitude--wrapper .ccl-hn-latitude--section h2 {
        font-size: 28px;
    }

    .ccl-hn-latitude--wrapper .ccl-hn-latitude--hero-stats {
        flex-direction: column;
    }

    .ccl-hn-latitude--wrapper .ccl-hn-latitude--wizard-step-label {
        display: none;
    }

    .ccl-hn-latitude--wrapper .ccl-hn-latitude--wizard-progress {
        padding: 0;
    }
}