:root {
    --a4u-navy: #000a64;
    --a4u-text-dark: #1e293b;
    --a4u-text-muted: #475569;
    --a4u-gold: #b58e74;
    --a4u-gold-light: #e0cbbd;
}

.a4u-hero-left-content {
    position: relative;
    z-index: 10;
    width: 100%;
    text-align: center;
}

.a4u-content-container {
    width: 100%;
}

@media (min-width: 768px) {
    .a4u-hero-left-content {
        text-align: left;
    }
}

.a4u-kicker {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #94a3b8;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.a4u-navy-text {
    color: var(--a4u-navy);
}

.a4u-title.text-hero, 
.a4u-hero-title {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--a4u-text-dark);
    letter-spacing: -1px;
    margin-top: 0;
    margin-bottom: 20px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.a4u-title.text-section {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--a4u-text-dark);
    margin-top: 0;
    margin-bottom: 16px;
}

.a4u-desc.text-hero, 
.a4u-hero-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--a4u-text-muted);
    margin-bottom: 35px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.a4u-desc.text-body {
    font-size: 14px;
    line-height: 1.5;
    color: var(--a4u-text-muted);
    margin-bottom: 20px;
}

.a4u-desc strong, 
.a4u-hero-desc strong {
    font-weight: 700;
    color: #0f172a;
}

@media (min-width: 768px) {
    .a4u-title.text-hero, 
    .a4u-hero-title {
        font-size: 56px;
        line-height: 1.15;
        letter-spacing: -2px;
        margin-bottom: 25px;
        max-width: none;
        margin-left: 0;
    }
    .a4u-title.text-section {
        font-size: 36px;
    }
    .a4u-desc.text-hero, 
    .a4u-hero-desc {
        font-size: 18px;
        margin-bottom: 40px;
        margin-left: 0;
    }
}

.a4u-title.text-section,
.a4u-section-title {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--a4u-text-dark);
    letter-spacing: -0.5px;
    margin-top: 0;
    margin-bottom: 20px;
}

.a4u-desc.text-section,
.a4u-section-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--a4u-text-muted);
    margin-bottom: 35px;
    max-width: 520px;
}

@media (min-width: 768px) {
    .a4u-title.text-section,
    .a4u-section-title {
        font-size: 40px;
        line-height: 1.15;
        letter-spacing: -1.2px;
    }
    .a4u-desc.text-section,
    .a4u-section-desc {
        font-size: 16.5px;
        margin-bottom: 40px;
    }
}

.a4u-maliyah-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: sans-serif;
    font-style: italic;
    color: var(--a4u-gold);
    font-weight: 600;
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 20px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.a4u-maliyah-tag svg {
    color: var(--a4u-navy);
    opacity: 0.6;
    transform: scaleX(-1);
    flex-shrink: 0;
}

.a4u-maliyah-tag span {
    border-bottom: 1px solid rgba(181, 142, 116, 0.2);
    padding-bottom: 2px;
}

@media (min-width: 768px) {
    .a4u-maliyah-tag {
        justify-content: flex-start;
        font-size: 20px;
        margin-bottom: 25px;
        max-width: none;
        margin-left: 0;
    }
}

.a4u-btn-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.a4u-btn-primary, 
.a4u-btn-secondary {
    position: relative;
    height: 60px;
    width: max-content !important;
    min-width: 200px !important;
    padding: 0 40px !important;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.2, 1);
}

.a4u-btn-primary span, 
.a4u-btn-secondary span {
    position: relative;
    z-index: 10;
    letter-spacing: 0.025em;
}

.a4u-btn-primary svg, 
.a4u-btn-secondary svg {
    position: relative;
    z-index: 10;
    margin-left: 10px;
    flex-shrink: 0;
    transition: transform 0.3s ease-in-out;
}

.a4u-btn-primary:hover svg, 
.a4u-btn-secondary:hover svg {
    transform: translateX(4px);
}

.a4u-btn-primary:hover, 
.a4u-btn-secondary:hover {
    transform: translateY(-4px);
}

.a4u-btn-primary {
    background-color: var(--a4u-navy);
    color: #ffffff !important;
    border: 2px solid var(--a4u-navy);
    box-shadow: 0 10px 25px rgba(0, 10, 100, 0.15);
}

.a4u-btn-primary:hover {
    background-color: transparent;
    color: var(--a4u-navy) !important;
    box-shadow: 0 16px 32px rgba(0, 10, 100, 0.22);
}

.a4u-btn-secondary {
    background-color: transparent;
    color: var(--a4u-gold) !important;
    border: 2px solid var(--a4u-gold-light);
}

.a4u-btn-secondary:hover {
    background-color: rgba(224, 203, 189, 0.2);
    border-color: var(--a4u-gold);
}

@media (min-width: 768px) {
    .a4u-btn-wrapper {
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        max-width: none;
        margin-left: 0;
        width: auto;
    }
}

.a4u-btn-compact {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--a4u-navy) !important;
    text-decoration: none !important;
    gap: 6px;
    padding: 6px 0;
    position: relative;
    cursor: pointer;
    transition: color 0.2s ease;
}

.a4u-btn-compact::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--a4u-gold-light);
    transform: scaleX(1);
    transform-origin: bottom left;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.2, 1), background-color 0.2s ease;
}

.a4u-btn-compact:hover {
    color: var(--a4u-gold) !important;
}

.a4u-btn-compact:hover::after {
    transform: scaleX(0.4);
    background-color: var(--a4u-gold);
}

.a4u-btn-compact svg {
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.2, 1);
}

.a4u-btn-compact:hover svg {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .a4u-btn-compact {
        justify-content: center;
        margin-top: 8px;
    }
}

.a4u-prod-wrapper {
    width: 100%;
    box-sizing: border-box;
}

.a4u-prod-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.a4u-prod-card:hover {
    box-shadow: 0 12px 30px rgba(0, 10, 100, 0.08);
    border-color: #cbd5e1;
}

.a4u-prod-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f1f5f9;
}

.a4u-prod-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.a4u-prod-card:hover .a4u-prod-img {
    transform: scale(1.08);
}

.a4u-prod-loc {
    position: absolute; 
    bottom: 15px; 
    left: 15px;
    background: rgba(15, 23, 42, 0.85); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #ffffff; 
    padding: 7px 15px; 
    border-radius: 50px; 
    font-size: 11px; 
    font-weight: 700; 
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.a4u-prod-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.a4u-prod-body h3 {
    font-size: 20px; 
    font-weight: 800; 
    margin: 0;
    color: var(--a4u-text-dark); 
    letter-spacing: -0.5px;
}

.a4u-price-subcard {
    background: #f8fafc;
    padding: 14px 18px;
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.01);
}

.a4u-price-info span { 
    font-size: 10px; 
    font-weight: 700; 
    color: var(--a4u-text-muted); 
    display: block; 
    text-transform: uppercase; 
    letter-spacing: 0.8px;
}

.a4u-price-info p { 
    font-size: 22px; 
    font-weight: 800; 
    color: var(--a4u-navy); 
    margin: 0; 
    line-height: 1.1; 
    margin-top: 4px;
}

.a4u-price-info p small { 
    font-size: 13px; 
    font-weight: 600; 
    opacity: 0.7; 
}

.a4u-btn-prod {
    width: 100%;
    height: 52px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none !important;
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.2, 1);
}

.a4u-btn-prod-svg {
    width: 12px;
    height: 12px;
    margin-left: 8px;
    flex-shrink: 0;
    transition: transform 0.3s ease-in-out;
}

.a4u-btn-prod:hover {
    transform: translateY(-3px);
}

.a4u-btn-prod:hover .a4u-btn-prod-svg {
    transform: translateX(4px);
}

.a4u-btn-prod.btn-blue { 
    background: var(--a4u-navy); 
    color: #ffffff !important; 
    box-shadow: 0 6px 16px rgba(0, 10, 100, 0.1);
}
.a4u-btn-prod.btn-blue:hover {
    box-shadow: 0 10px 22px rgba(0, 10, 100, 0.18);
}

.a4u-btn-prod.btn-amber { 
    background: #f59e0b; 
    color: #ffffff !important; 
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.15);
}
.a4u-btn-prod.btn-amber:hover {
    box-shadow: 0 10px 22px rgba(245, 158, 11, 0.25);
}

@media (max-width: 767px) {
    .a4u-prod-body { 
        padding: 20px; 
        gap: 12px; 
    }
    .a4u-price-info p { 
        font-size: 20px; 
    }
    .a4u-prod-img-box { 
        aspect-ratio: 16 / 9; 
    }
    .a4u-prod-loc { 
        padding: 6px 12px; 
        font-size: 10px; 
        bottom: 10px; 
        left: 10px; 
    }
}

.a4u-hero-right-container {
    position: relative;
    width: 100%;
    max-width: 512px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: visible;
    user-select: none;
    height: 100%;
    min-height: 400px;
    box-sizing: border-box;
}

.a4u-hero-img-wrapper {
    position: relative;
    width: 100%;
    z-index: 30;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    margin-top: auto;
}

.a4u-hero-foreground-img {
    width: 80%;
    height: auto;
    max-width: 110%;
    object-fit: contain;
    object-position: bottom;
    transform: scale(1.05);
    transform-origin: bottom;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.04));
}

.a4u-liquid-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.45);
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 
        inset 0 2px 4px rgba(255, 255, 255, 0.8),
        inset 0 -6px 12px rgba(0, 10, 100, 0.03),
        inset 0 6px 12px rgba(255, 255, 255, 0.4),
        0 8px 20px -6px rgba(0, 10, 100, 0.06);
    border-radius: 14px 24px 16px 22px / 20px 14px 22px 16px;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-radius 0.5s ease;
    animation: liquidRectMorph 7s ease-in-out infinite alternate;
    pointer-events: auto;
}

.a4u-liquid-badge:hover {
    transform: scale(1.05);
}

.a4u-badge-icon {
    width: 14px;
    height: 14px;
    color: var(--a4u-gold);
    flex-shrink: 0;
}

.a4u-badge-text {
    font-family: sans-serif;
    font-weight: 800;
    font-size: 10px;
    color: var(--a4u-navy);
    letter-spacing: 0.025em;
    white-space: nowrap;
}

.a4u-badge-pos-1 { position: absolute; top: 15%; left: 5%; z-index: 10; }
.a4u-badge-pos-2 { position: absolute; top: 5%; left: 50%; transform: translateX(-50%); z-index: 10; }
.a4u-badge-pos-3 { position: absolute; top: 28%; right: 5%; z-index: 10; }

@media (min-width: 640px) {
    .a4u-hero-right-container { min-height: 460px; }
    .a4u-badge-pos-1 { top: 28%; left: 16px; }
    .a4u-badge-pos-2 { top: 4%; left: 25%; transform: none; }
    .a4u-badge-pos-3 { top: 22%; right: 16px; }
}

@media (min-width: 768px) {
    .a4u-hero-right-container { max-width: 672px; margin-left: auto; margin-right: 0; min-height: 580px; }
    .a4u-hero-foreground-img { max-width: 115%; transform: scale(1.15); }
    .a4u-badge-pos-1 { top: 17%; left: 2%; }
    .a4u-badge-pos-2 { top: 6%; left: 34%; }
    .a4u-badge-pos-3 { top: 18%; right: 2%; }
    .a4u-liquid-badge { padding: 10px 14px; gap: 8px; }
    .a4u-badge-icon { width: 16px; height: 16px; }
    .a4u-badge-text { font-size: 12px; }
}

@media (min-width: 1024px) {
    .a4u-hero-right-container { max-width: 768px; }
    .a4u-hero-foreground-img { max-width: 120%; }
}

@keyframes liquidRectMorph {
    0% { border-radius: 14px 24px 16px 22px / 20px 14px 22px 16px; }
    33% { border-radius: 22px 16px 24px 14px / 14px 22px 16px 24px; }
    66% { border-radius: 16px 22px 14px 26px / 24px 16px 20px 14px; }
    100% { border-radius: 20px 18px 22px 16px / 16px 24px 14px 22px; }
}

.a4u-motion-float-1 { animation: badgeFloatTrack1 6s ease-in-out infinite alternate; will-change: transform; }
.a4u-motion-float-2 { animation: badgeFloatTrack2 7s ease-in-out infinite alternate; will-change: transform; }
.a4u-motion-float-3 { animation: badgeFloatTrack3 8s ease-in-out infinite alternate; will-change: transform; }

@keyframes badgeFloatTrack1 {
    0% { transform: translateY(0px) rotate(0.5deg); }
    100% { transform: translateY(-8px) rotate(-1deg); }
}
@keyframes badgeFloatTrack2 {
    0% { transform: translateY(0px) rotate(-0.5deg); }
    100% { transform: translateY(-12px) rotate(1deg); }
}
@keyframes badgeFloatTrack3 {
    0% { transform: translateY(0px) rotate(1deg); }
    100% { transform: translateY(-9px) rotate(-0.5deg); }
}

.a4u-faq-trigger:focus {
    outline: none !important;
    box-shadow: none !important;
}

.a4u-faq-trigger:focus-visible {
    outline: 2px solid var(--a4u-navy) !important;
    outline-offset: -2px !important;
}


.a4u-hero-cta-wrapper {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    width: 100% !important;
    margin: 0 auto !important;
}

.a4u-hero-btn-main, 
.a4u-hero-btn-sub {
    position: relative !important;
    height: 54px !important; /* Slightly more compact modern height token */
    width: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 24px !important; /* Premium tight padding constraint */
    border-radius: 12px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.2, 1) !important;
}

.a4u-hero-btn-main svg, 
.a4u-hero-btn-sub svg {
    margin-left: 8px !important;
    flex-shrink: 0 !important;
    transition: transform 0.3s ease-in-out !important;
}

.a4u-hero-btn-main:hover svg, 
.a4u-hero-btn-sub:hover svg {
    transform: translateX(4px) !important;
}

.a4u-hero-btn-main:hover, 
.a4u-hero-btn-sub:hover {
    transform: translateY(-3px) !important;
}

.a4u-hero-btn-main {
    background-color: var(--a4u-navy) !important;
    color: #ffffff !important;
    border: 2px solid var(--a4u-navy) !important;
    box-shadow: 0 8px 20px rgba(0, 10, 100, 0.12) !important;
}

.a4u-hero-btn-main:hover {
    background-color: transparent !important;
    color: var(--a4u-navy) !important;
    box-shadow: 0 12px 24px rgba(0, 10, 100, 0.18) !important;
}

.a4u-hero-btn-sub {
    background-color: transparent !important;
    color: var(--a4u-gold) !important;
    border: 2px solid var(--a4u-gold-light) !important;
}

.a4u-hero-btn-sub:hover {
    background-color: rgba(224, 203, 189, 0.15) !important;
    border-color: var(--a4u-gold) !important;
}

@media (min-width: 768px) {
    .a4u-hero-cta-wrapper {
        justify-content: flex-start !important; /* Snaps left on desktop viewports */
        gap: 16px !important;
    }
    .a4u-hero-btn-main, 
    .a4u-hero-btn-sub {
        padding: 0 32px !important;
        font-size: 16px !important;
    }
}