/* ============================================
   ADULT LANDING PAGE — adult_landing.css
   Prefix: al- (adult landing)
   ============================================ */

/* --- Keyframes --- */
@keyframes heroDocFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes heroGlow {
    0%, 100% { box-shadow: 0 20px 60px rgba(0,51,102,0.12), 0 1px 3px rgba(0,51,102,0.08), 0 0 0 0 rgba(79,195,247,0); }
    50% { box-shadow: 0 25px 70px rgba(0,51,102,0.15), 0 1px 3px rgba(0,51,102,0.08), 0 0 40px rgba(79,195,247,0.08); }
}

@keyframes heroBadgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

/* --- Hero shared interactive --- */
.hero-feature-row {
    transition: transform 0.15s ease;
    gap: 12px;
}

.hero-feature-row:hover {
    transform: translateX(4px);
}

.hero-cta-btn {
    background: #003366;
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1.08rem;
    box-shadow: none;
    letter-spacing: 0.01em;
    transition: all 0.25s ease !important;
}

.hero-cta-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: none !important;
    color: white;
}

.hero-price-badge {
    transition: transform 0.2s ease;
}

.hero-price-badge:hover {
    transform: scale(1.03);
}

/* ============================================
   HERO SECTION
   ============================================ */
.al-hero {
    overflow: hidden;
}

.al-hero-row {
    min-height: 560px;
}

.al-hero-left {
    position: relative;
    z-index: 2;
    padding-left: 40px;
}

.al-hero-title {
    line-height: 1.1;
}

.al-hero-trust {
    font-size: 0.85rem;
    color: #28a745;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.al-hero-lead {
    max-width: 500px;
}

.al-hero-features {
    max-width: 440px;
}

.al-check-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(40,167,69,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.al-check-icon {
    color: #28a745;
    font-size: 0.7rem;
}

.al-feature-text {
    font-size: 0.93rem;
    font-weight: 600;
    color: #1e293b;
}

/* --- Hero Right Column --- */
.al-hero-right {
    position: relative;
}

.al-hero-bg-lg {
    position: absolute;
    top: -40px;
    right: -60px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,51,102,0.05) 0%, rgba(79,195,247,0.05) 100%);
}

.al-hero-bg-sm {
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79,195,247,0.06) 0%, transparent 70%);
}

/* ============================================
   DOCUMENT CARD
   ============================================ */
.al-doc-wrap {
    position: relative;
    z-index: 1;
    max-width: 390px;
    margin: 0 auto;
    animation: heroDocFloat 5s ease-in-out infinite;
}

.al-doc-card {
    background: white;
    border-radius: 0;
    padding: 44px 38px 34px;
    border: 1px solid rgba(0,51,102,0.06);
}

.al-doc-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #003366;
    color: white;
    padding: 5px 14px;
    border-radius: 0;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.al-doc-header-line {
    width: 40px;
    height: 2px;
    background: #003366;
    margin: 0 auto 16px;
    opacity: 0.2;
}

.al-doc-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #003366;
    margin-bottom: 6px;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style: italic;
    letter-spacing: 0.02em;
}

.al-doc-cert-wrap {
    display: inline-block;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 3px 14px;
}

.al-doc-cert-text {
    font-size: 0.6rem;
    color: #64748b;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 700;
}

.al-doc-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
    margin: 16px 0;
}

.al-doc-separator--bottom {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
    margin: 12px 0 16px;
}

.al-doc-text-block {
    padding: 10px 0 16px;
}

.al-doc-text-line {
    height: 6px;
    background: #eef2f7;
    border-radius: 3px;
    margin-bottom: 8px;
}

.al-doc-text-line:last-child {
    margin-bottom: 0;
}

.al-doc-text-line--85 { width: 85%; }
.al-doc-text-line--93 { width: 93%; }
.al-doc-text-line--72 { width: 72%; }
.al-doc-text-line--60 { width: 60%; }

.al-doc-name-fields {
    margin-bottom: 18px;
}

.al-doc-field-group {
    margin-bottom: 14px;
}

.al-doc-field-group:last-child {
    margin-bottom: 0;
}

.al-doc-field-label {
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #94a3b8;
    font-weight: 700;
    margin-bottom: 8px;
}

.al-doc-field-underline--former {
    border-bottom: 2px solid #c8d4e0;
    padding-bottom: 6px;
    width: 70%;
}

.al-doc-field-underline--new {
    border-bottom: 2px solid #c8d4e0;
    padding-bottom: 6px;
    width: 65%;
}

.al-doc-field-bar {
    height: 8px;
    background: #e8edf3;
    border-radius: 3px;
}

.al-doc-field-bar--80 { width: 80%; }
.al-doc-field-bar--75 { width: 75%; }

/* Date & Signature */
.al-doc-small-label {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #94a3b8;
    font-weight: 700;
    margin-bottom: 6px;
}

.al-doc-sig-col {
    text-align: right;
}

.al-doc-date-underline {
    border-bottom: 1.5px solid #cbd5e1;
    width: 85px;
    padding-bottom: 4px;
}

.al-doc-date-bar {
    height: 6px;
    background: #eef2f7;
    border-radius: 3px;
    width: 60px;
}

.al-doc-sig-underline {
    border-bottom: 1.5px solid #003366;
    width: 130px;
    opacity: 0.4;
}

/* Witnesses */
.al-doc-witnesses {
    margin-top: 18px;
    gap: 20px;
}

.al-doc-witness {
    flex: 1;
}

.al-doc-witness-underline {
    border-bottom: 1.5px solid #cbd5e1;
    padding-bottom: 4px;
}

.al-doc-witness-bar {
    height: 6px;
    background: #eef2f7;
    border-radius: 3px;
}

.al-doc-witness-bar--70 { width: 70%; }
.al-doc-witness-bar--55 { width: 55%; }

/* Seal watermark */
.al-doc-seal-outer {
    position: absolute;
    bottom: 50px;
    right: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid rgba(0,51,102,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.4;
}

.al-doc-seal-inner {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(0,51,102,0.08);
}

/* Trustpilot below card */
.al-hero-trustpilot {
    gap: 12px;
}

.al-hero-tp-img {
    height: 34px;
    width: auto;
}

.al-hero-tp-text {
    font-size: 1.1rem;
    color: #475569;
    font-weight: 600;
}

.al-hero-tp-text strong {
    color: #003366;
}

/* ============================================
   LOGO CAROUSEL SECTION
   ============================================ */
.al-logos {
    background: white;
    border-bottom: 1px solid #eef2f7;
    padding-bottom: 2rem;
}

.al-logos-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #94a3b8;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.al-hiw {
    background: #003366;
}

.al-hiw-container {
    font-family: 'Poppins', sans-serif;
    padding-top: 40px;
    padding-bottom: 40px;
}

.al-hiw-header {
    margin-bottom: 28px;
}

.al-hiw-pill {
    display: inline-block;
    background: rgba(79,195,247,0.15);
    color: #4fc3f7;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.al-hiw-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

.al-hiw-step {
    padding: 16px 8px;
}

.al-hiw-step-img {
    height: 150px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 6px 16px rgba(0,0,0,0.35));
    margin-bottom: 12px;
}

.al-hiw-step-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 5px;
}

.al-hiw-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: rgba(79,195,247,0.15);
    color: #4fc3f7;
    font-weight: 800;
    font-size: 0.8rem;
}

.al-hiw-step-name {
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0;
}

.al-hiw-step-desc {
    color: rgba(255,255,255,0.65);
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0;
}

.al-hiw-step-desc strong {
    color: white;
}

.al-hiw-step4-icon-wrap {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.al-hiw-step4-icon {
    font-size: 3.5rem;
    color: rgba(79,195,247,0.5);
}

.al-hiw-cta-wrap {
    margin-top: 24px;
}

.al-hiw-cta {
    background-color: #4fc3f7;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    box-shadow: none;
    transition: all 0.2s ease;
}

.al-hiw-cta:hover {
    transform: translateY(-2px);
    box-shadow: none;
    color: white;
}

/* ============================================
   COMPLETE PACKAGE SECTION
   ============================================ */
.al-pkg {
    background: #f8fafc;
    font-family: 'Poppins', sans-serif;
}

.al-pkg-container {
    padding-top: 64px;
    padding-bottom: 64px;
}

.al-pkg-badge {
    display: inline-block;
    background: #003366;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.al-pkg-title {
    color: #003366;
    font-weight: 800;
    font-size: 1.75rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin-bottom: 16px;
}

.al-pkg-text {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 20px;
}

.al-pkg-text--last {
    margin-bottom: 28px;
}

.al-pkg-text strong {
    color: #1e293b;
}

.al-pkg-text strong.al-navy {
    color: #003366;
}

.al-pkg-orgs {
    margin-bottom: 24px;
}

.al-pkg-orgs-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.al-pkg-org-item {
    padding: 5px 0;
    font-size: 0.85rem;
    color: #1e293b;
}

.al-pkg-org-check {
    color: #10B981;
    font-size: 0.65rem;
    margin-right: 8px;
}

.al-pkg-more {
    margin-top: 8px;
    font-size: 0.78rem;
    color: #64748b;
}

.al-pkg-more i {
    font-size: 0.55rem;
    margin-right: 4px;
}

.al-pkg-more strong {
    color: #003366;
}

.al-pkg-guide-btn {
    background: #4fc3f7;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 0.75rem 1.75rem;
    font-size: 0.92rem;
    transition: all 0.2s ease;
    box-shadow: none;
}

.al-pkg-guide-btn:hover {
    transform: translateY(-1px);
    box-shadow: none;
    color: white;
}

/* --- Pricing Card --- */
.al-pricing {
    background: white;
    border-radius: 16px;
    border: 2px solid #003366;
    box-shadow: 0 8px 30px rgba(0,51,102,0.1);
    overflow: hidden;
    position: sticky;
    top: 24px;
}

.al-pricing-header {
    background: #003366;
    padding: 1.5rem 2rem;
    text-align: center;
}

.al-pricing-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #4fc3f7;
    margin-bottom: 8px;
}

.al-pricing-price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.al-pricing-price {
    color: white;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.al-pricing-sub {
    color: rgba(255,255,255,0.6);
    font-size: 0.82rem;
    margin-top: 4px;
}

.al-pricing-body {
    padding: 1.75rem 2rem;
}

.al-pricing-includes-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.al-pricing-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.al-pricing-item:last-of-type {
    border-bottom: none;
}

.al-pricing-item-icon {
    color: #003366;
    font-size: 0.9rem;
    margin-top: 2px;
    width: 20px;
    text-align: center;
}

.al-pricing-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    background: #e8f5e9;
    color: #28a745;
    font-size: 0.65rem;
    margin-top: 2px;
}

.al-pricing-item-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
}

.al-pricing-item-desc {
    font-size: 0.78rem;
    color: #64748b;
}

.al-pricing-cta {
    background: #003366;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 0.9rem;
    font-size: 1rem;
    text-align: center;
    margin-top: 20px;
    transition: all 0.2s ease;
}

.al-pricing-cta:hover {
    background: #004d80;
    transform: translateY(-1px);
    box-shadow: none;
    color: white;
}

.al-pricing-secure {
    margin-top: 10px;
    font-size: 0.75rem;
    color: #94a3b8;
}

.al-pricing-secure i {
    font-size: 0.6rem;
}

/* ============================================
   REVIEWS CAROUSEL SECTION
   ============================================ */
.al-reviews {
    background: #003366;
    overflow: visible;
    box-sizing: border-box;
}

.al-reviews-container {
    font-family: 'Poppins', sans-serif;
    padding-top: 64px;
    padding-bottom: 64px;
}

.al-reviews-heading-col {
    margin-bottom: 32px;
}

.al-reviews-tp-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    background: rgba(255,255,255,0.1);
    padding: 6px 16px;
    border-radius: 20px;
}

.al-reviews-tp-pill span {
    color: white;
    font-weight: 700;
    font-size: 0.82rem;
}

.al-reviews-title {
    color: white;
    font-weight: 800;
    font-size: 2.2rem;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
    line-height: 1.15;
}

.al-reviews-title-accent {
    color: #4fc3f7;
}

.al-reviews-desc {
    color: rgba(255,255,255,0.55);
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0;
}

/* Carousel */
.al-carousel-wrap {
    position: relative;
}

.al-carousel-viewport {
    overflow: hidden;
    margin: 0 48px;
}

.al-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

.al-review-slide {
    flex: 0 0 calc(50% - 10px);
    min-width: calc(50% - 10px);
}

.al-review-card {
    background: white;
    border-radius: 10px;
    padding: 28px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.al-review-text {
    color: #334155;
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 0 0 20px;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.al-review-footer {
    border-top: 1px solid #e2e8f0;
    padding-top: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

.al-review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    font-weight: 600;
    font-size: 0.72rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.al-review-avatar--coral { background: #e74c5a; }
.al-review-avatar--cyan { background: #4fc3f7; }

.al-review-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.85rem;
}

.al-review-stars {
    color: #00b67a;
    font-size: 1.05rem;
    letter-spacing: 2px;
    margin-left: auto;
}

/* Carousel arrows */
.al-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    color: white;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 2;
}

.al-carousel-arrow:hover {
    background: rgba(255,255,255,0.3);
}

.al-carousel-arrow--prev { left: 0; }
.al-carousel-arrow--next { right: 0; }

/* Carousel dots */
.al-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 28px;
}

/* ============================================
   LEGAL / EDUCATIONAL SECTION
   ============================================ */
.al-legal {
    background: #f8fafc;
    font-family: 'Poppins', sans-serif;
}

.al-legal-container {
    padding-top: 64px;
    padding-bottom: 64px;
}

.al-legal-row {
    margin-bottom: 48px;
}

.al-legal-left {
    margin-bottom: 32px;
}

.al-legal-pill {
    display: inline-block;
    background: rgba(0,51,102,0.08);
    color: #003366;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 6px;
    margin-bottom: 14px;
}

.al-legal-title {
    color: #003366;
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: 18px;
}

.al-legal-subtitle {
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 440px;
}

.al-legal-subtitle strong {
    color: #003366;
}

/* History badge (inline with left column) */
.al-legal-history-badge {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px 18px;
    margin-top: 24px;
    max-width: 440px;
}

.al-legal-history-badge i {
    color: #003366;
    font-size: 0.85rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.al-legal-history-badge span {
    font-size: 0.8rem;
    line-height: 1.55;
    color: #64748b;
}

.al-legal-history-badge strong {
    color: #003366;
}

/* Right column cards */
.al-legal-right {
    padding-left: 24px;
}

.al-legal-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.al-legal-fact {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px;
    transition: box-shadow 0.2s ease;
}

.al-legal-fact:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.al-legal-fact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0,51,102,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.al-legal-fact-icon i {
    font-size: 1.1rem;
    color: #003366;
}

.al-legal-fact-body {
    flex: 1;
    min-width: 0;
}

.al-legal-fact-title {
    font-size: 1rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 6px;
}

.al-legal-fact-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 0;
}

.al-legal-fact-desc strong {
    color: #003366;
}

/* Links within legal section */
.al-legal-link {
    color: #4fc3f7;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.al-legal-link:hover {
    color: #003366;
}

/* Footer area */
.al-legal-footer {
    margin-top: 0;
}

.al-legal-crosslink {
    font-size: 0.82rem;
    color: #94a3b8;
    margin-top: 4px;
}

/* Accepted by strip */
.al-legal-strip {
    margin-bottom: 24px;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.al-legal-strip-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #94a3b8;
    margin-bottom: 16px;
}

.al-legal-org-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.al-legal-org-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 8px;
    transition: box-shadow 0.2s ease;
}

.al-legal-org-pill:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.al-legal-org-pill i {
    font-size: 0.65rem;
    color: #003366;
    flex-shrink: 0;
}

.al-legal-org-pill span {
    font-size: 0.68rem;
    font-weight: 600;
    color: #1e293b;
    white-space: nowrap;
}
/* ============================================
   FINAL CTA SECTION
   ============================================ */
.al-final {
    background: #f8fafc;
}

.al-final-container {
    padding-top: 0;
    padding-bottom: 64px;
}

.al-final-inner {
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.al-final-deco-tr {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(79,195,247,0.08);
}

.al-final-deco-bl {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(79,195,247,0.06);
}

.al-final-content {
    position: relative;
    z-index: 1;
}

.al-final-title {
    color: #ffffff;
    font-weight: 800;
    font-size: 2rem;
    line-height: 1.25;
}

.al-final-desc {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.al-final-desc strong {
    color: #4fc3f7;
}

.al-final-features {
    gap: 6px 18px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
}

.al-final-primary {
    padding: 16px 32px;
    font-size: 1.05rem;
    border-radius: 10px;
    max-width: 320px;
}

.al-final-secondary {
    padding: 14px 32px;
    font-size: 0.95rem;
    border-radius: 10px;
    max-width: 320px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    color: white;
}

.al-final-secondary:hover {
    color: white;
}

.al-final-secure {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

/* ============================================
   RESPONSIVE — TABLET OVERRIDE (768px–1024px)
   Override home.css centering for landing pages
   ============================================ */
@media (min-width: 768px) and (max-width: 1024px) {
    .home-hero .col-lg-6:first-child {
        text-align: left !important;
    }

    .home-headline,
    .home-lead {
        text-align: left !important;
    }
}

/* ============================================
   RESPONSIVE — SMALL LAPTOP (992px–1199px)
   ============================================ */
@media (min-width: 992px) and (max-width: 1199px) {
    .al-hero-left {
        padding-left: 16px;
    }

    .al-hero-title {
        font-size: 2.4rem;
    }

    .al-hero-lead {
        font-size: 0.9rem;
        max-width: 420px;
    }

    .al-hero-features {
        max-width: 380px;
    }

    .al-doc-wrap {
        max-width: 340px;
    }

    .al-doc-card {
        padding: 30px 24px 24px;
    }

    .al-hero-bg-lg {
        width: 380px;
        height: 380px;
        right: -40px;
    }
}

/* ============================================
   RESPONSIVE — TABLET (≤991px)
   ============================================ */
@media (max-width: 991px) {
    /* ---- Hero ---- */
    .al-hero-row {
        min-height: auto;
    }

    .al-hero-left {
        padding-left: 20px;
        padding-right: 20px;
        text-align: left;
    }

    .al-hero-title {
        font-size: 2.2rem;
    }

    .al-hero-lead {
        max-width: 540px;
    }

    .al-hero-features {
        display: block;
        text-align: left;
        max-width: 380px;
    }

    .hero-cta-btn {
        min-width: 320px;
    }

    /* ---- How It Works ---- */
    .al-hiw-title {
        font-size: 1.55rem;
    }

    .al-hiw-step-img {
        height: 95px;
    }

    .al-hiw-step4-icon-wrap {
        height: 95px;
    }

    /* ---- Complete Package ---- */
    .al-pricing {
        position: static;
        max-width: 420px;
        margin: 0 auto;
    }

    .al-pkg-container {
        padding-top: 48px;
        padding-bottom: 48px;
        text-align: center;
    }

    .al-pkg-title {
        font-size: 1.55rem;
    }

    .al-pkg-text {
        max-width: 540px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
        text-align: left;
    }

    .al-pkg-orgs {
        display: block;
        text-align: left;
        max-width: 540px;
        margin-left: auto;
        margin-right: auto;
        background: #f0f4f8;
        border-radius: 14px;
        padding: 20px 20px 16px;
    }

    .al-pkg-orgs-label {
        text-align: center;
        margin-bottom: 14px;
        font-size: 0.75rem;
    }

    .al-pkg-orgs .row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .al-pkg-orgs .col-12,
    .al-pkg-orgs .col-sm-6 {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .al-pkg-org-item {
        background: #ffffff;
        border-radius: 8px;
        padding: 10px 12px;
        margin: 3px;
        font-size: 0.82rem;
        font-weight: 500;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }

    .al-pkg-org-check {
        color: #10B981;
        font-size: 0.6rem;
    }

    .al-pkg-more {
        text-align: center;
        margin-top: 14px;
        padding-top: 12px;
        border-top: 1px solid #e2e8f0;
        font-size: 0.78rem;
    }

    .al-pkg-guide-btn {
        display: inline-block;
        text-align: center;
        min-width: 320px;
        margin-top: 8px;
    }

    .al-pricing {
        position: static;
        max-width: 420px;
        margin: 28px auto 0;
    }
    .al-reviews-container {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .al-reviews-heading-col {
        text-align: center;
        margin-bottom: 24px;
    }

    .al-reviews-title {
        font-size: 1.9rem;
    }

    .al-reviews-desc {
        max-width: 480px;
        margin: 0 auto;
    }

    /* ---- Legal ---- */
    .al-legal-container {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .al-legal-row {
        margin-bottom: 36px;
    }

    .al-legal-left {
        text-align: center;
        margin-bottom: 28px;
    }

    .al-legal-subtitle {
        max-width: 680px;
        margin-left: auto;
        margin-right: auto;
    }

    .al-legal-history-badge {
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .al-legal-title {
        font-size: 1.7rem;
    }

    .al-legal-right {
        padding-left: 15px;
    }

    .al-legal-fact {
        padding: 20px;
    }

    /* ---- Final CTA ---- */
    .al-final-container {
        padding-bottom: 48px;
    }

    .al-final-inner {
        padding: 40px 28px;
    }

    .al-final-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .al-final-primary,
    .al-final-secondary {
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ============================================
   RESPONSIVE — MOBILE (≤767px)
   ============================================ */
@media (max-width: 767px) {
    /* ---- Hero ---- */
    .al-hero-row {
        min-height: auto;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .al-hero-left {
        padding-left: 12px;
        padding-right: 12px;
        text-align: center;
    }

    .al-hero-title {
        font-size: 1.85rem;
        line-height: 1.15;
    }

    .al-hero-trust {
        font-size: 0.8rem;
    }

    .al-hero-lead {
        font-size: 0.92rem;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .al-hero-features {
        max-width: 100%;
        display: inline-block;
        text-align: left;
    }

    .hero-feature-row {
        gap: 10px;
    }

    .al-check-circle {
        width: 24px;
        height: 24px;
    }

    .al-check-icon {
        font-size: 0.6rem;
    }

    .al-feature-text {
        font-size: 0.85rem;
    }

    .hero-cta-btn {
        width: 100%;
        font-size: 1rem;
        padding: 14px 24px;
    }

    /* ---- Logo Carousel ---- */
    .al-logos-label {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }

    /* ---- How It Works ---- */
    .al-hiw-container {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .al-hiw-header {
        margin-bottom: 20px;
    }

    .al-hiw-title {
        font-size: 1.3rem;
    }

    .al-hiw-step {
        padding: 12px 4px;
    }

    .al-hiw-step-img {
        height: 80px;
    }

    .al-hiw-step4-icon-wrap {
        height: 80px;
    }

    .al-hiw-step4-icon {
        font-size: 2.5rem;
    }

    .al-hiw-step-num {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
    }

    .al-hiw-step-name {
        font-size: 0.82rem;
    }

    .al-hiw-step-desc {
        font-size: 0.72rem;
    }

    .al-hiw-cta {
        width: 100%;
        font-size: 0.9rem;
    }

    /* ---- Complete Package ---- */
    .al-pkg-container {
        padding-top: 36px;
        padding-bottom: 36px;
    }

    .al-pkg-badge {
        font-size: 0.65rem;
        margin-bottom: 12px;
    }

    .al-pkg-title {
        font-size: 1.35rem;
    }

    .al-pkg-text {
        font-size: 0.88rem;
    }

    .al-pkg-org-item {
        font-size: 0.8rem;
        padding: 9px 10px;
        margin: 2px;
    }

    .al-pkg-orgs-label {
        margin-bottom: 10px;
    }

    .al-pkg-more {
        font-size: 0.75rem;
        margin-top: 12px;
    }

    .al-pkg-guide-btn {
        width: 100%;
        text-align: center;
        margin-bottom: 8px;
    }

    /* Pricing card mobile */
    .al-pricing {
        position: static;
        margin-top: 8px;
    }

    .al-pricing-header {
        padding: 1.25rem 1.25rem;
    }

    .al-pricing-price {
        font-size: 2.2rem;
    }

    .al-pricing-body {
        padding: 1.25rem 1.25rem;
    }

    .al-pricing-item-title {
        font-size: 0.85rem;
    }

    .al-pricing-item-desc {
        font-size: 0.72rem;
    }

    .al-pricing-cta {
        font-size: 0.92rem;
    }

    /* ---- Reviews Carousel ---- */
    .al-reviews-container {
        padding-top: 36px;
        padding-bottom: 36px;
    }

    .al-reviews-heading-col {
        text-align: center;
        margin-bottom: 20px;
    }

    .al-reviews-tp-pill {
        font-size: 0.75rem;
    }

    .al-reviews-title {
        font-size: 1.6rem;
    }

    .al-reviews-desc {
        font-size: 0.85rem;
        max-width: 100%;
    }

    .al-carousel-viewport {
        margin: 0 16px;
    }

    .al-review-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .al-review-card {
        padding: 20px 18px;
    }

    .al-review-text {
        font-size: 0.84rem;
        margin-bottom: 14px;
    }

    .al-review-footer {
        padding-top: 12px;
        gap: 8px;
    }

    .al-review-avatar {
        width: 32px;
        height: 32px;
        font-size: 0.65rem;
    }

    .al-review-name {
        font-size: 0.8rem;
    }

    .al-review-stars {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .al-carousel-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.65rem;
    }

    .al-carousel-arrow--prev { left: -4px; }
    .al-carousel-arrow--next { right: -4px; }

    .al-carousel-dots {
        margin-top: 20px;
    }

    /* ---- Legal / Educational ---- */
    .al-legal-container {
        padding-top: 36px;
        padding-bottom: 36px;
    }

    .al-legal-left {
        text-align: center;
        margin-bottom: 24px;
    }

    .al-legal-title {
        font-size: 1.4rem;
    }

    .al-legal-subtitle {
        font-size: 0.85rem;
    }

    .al-legal-right {
        padding-left: 15px;
    }

    .al-legal-fact {
        padding: 18px 16px;
        gap: 14px;
    }

    .al-legal-fact-icon {
        width: 42px;
        height: 42px;
    }

    .al-legal-fact-icon i {
        font-size: 0.95rem;
    }

    .al-legal-fact-title {
        font-size: 0.92rem;
    }

    .al-legal-fact-desc {
        font-size: 0.8rem;
    }

    .al-legal-org-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .al-legal-org-pill {
        padding: 8px 4px;
        gap: 5px;
    }

    .al-legal-org-pill i {
        font-size: 0.55rem;
    }

    .al-legal-org-pill span {
        font-size: 0.6rem;
    }

    .al-legal-strip-label {
        font-size: 0.6rem;
    }

    .al-legal-history-badge {
        padding: 12px 14px;
    }

    .al-legal-history-badge span {
        font-size: 0.75rem;
    }

    .al-legal-crosslink {
        font-size: 0.76rem;
    }

    /* ---- Final CTA ---- */
    .al-final-container {
        padding-bottom: 36px;
    }

    .al-final-inner {
        padding: 32px 16px;
    }

    .al-final-title {
        font-size: 1.4rem;
    }

    .al-final-desc {
        font-size: 0.9rem;
        max-width: 100%;
    }

    .al-final-features {
        justify-content: center !important;
        font-size: 0.75rem;
        gap: 4px 12px;
    }

    .al-final-primary,
    .al-final-secondary {
        max-width: 100%;
        width: 100%;
        font-size: 0.95rem;
    }

    .al-final-primary {
        padding: 14px 24px;
    }

    .al-final-secondary {
        padding: 12px 24px;
    }

    .al-final-secure {
        font-size: 0.7rem;
    }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================ */
@media (max-width: 480px) {
    /* Hero — tighter still */
    .al-hero-title {
        font-size: 1.6rem;
    }

    .al-hero-lead {
        font-size: 0.85rem;
    }

    .al-feature-text {
        font-size: 0.8rem;
    }

    /* How It Works — smaller images on tiny screens */
    .al-hiw-title {
        font-size: 1.15rem;
    }

    .al-hiw-step-img {
        height: 64px;
    }

    .al-hiw-step4-icon-wrap {
        height: 64px;
    }

    .al-hiw-step4-icon {
        font-size: 2rem;
    }

    .al-hiw-step-name {
        font-size: 0.75rem;
    }

    .al-hiw-step-desc {
        font-size: 0.68rem;
    }

    /* Package — compact */
    .al-pkg-title {
        font-size: 1.2rem;
    }

    .al-pkg-text {
        font-size: 0.82rem;
    }

    .al-pkg-orgs .row {
        grid-template-columns: 1fr;
    }

    .al-pkg-org-item {
        font-size: 0.78rem;
        padding: 8px 10px;
    }

    .al-pkg-orgs {
        padding: 16px 14px 12px;
    }

    .al-pricing-price {
        font-size: 2rem;
    }

    /* Reviews */
    .al-reviews-title {
        font-size: 1.35rem;
    }

    .al-carousel-viewport {
        margin: 0 10px;
    }

    .al-carousel-arrow {
        width: 28px;
        height: 28px;
        font-size: 0.55rem;
    }

    .al-carousel-arrow--prev { left: -6px; }
    .al-carousel-arrow--next { right: -6px; }

    .al-review-card {
        padding: 16px 14px;
    }

    .al-review-text {
        font-size: 0.8rem;
    }

    /* Legal — org pills to 2 cols on very small */
    .al-legal-title {
        font-size: 1.2rem;
    }

    .al-legal-org-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .al-legal-fact {
        padding: 16px 14px;
        gap: 12px;
    }

    .al-legal-fact-icon {
        width: 38px;
        height: 38px;
    }

    .al-legal-fact-icon i {
        font-size: 0.85rem;
    }

    .al-legal-fact-desc {
        font-size: 0.78rem;
    }

    /* Final CTA */
    .al-final-title {
        font-size: 1.2rem;
    }

    .al-final-desc {
        font-size: 0.82rem;
    }

    .al-final-inner {
        padding: 24px 12px;
    }
}
