/* ==================================================
   Enhanced Landing Page
   ================================================== */

.home-hero {
    position: relative;
    overflow: hidden;
    padding: 4rem 0 2rem;
    background:
        radial-gradient(circle at top left, rgba(212, 165, 116, 0.22), transparent 34%),
        radial-gradient(circle at top right, rgba(45, 90, 107, 0.16), transparent 36%),
        linear-gradient(135deg, #f9f7f4 0%, #f3eee8 100%);
}

.home-hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(249, 247, 244, 0.82), rgba(249, 247, 244, 0.92)),
        url('https://images.unsplash.com/photo-1566073771259-6a8506099945?q=80&w=1800&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.34;
    transform: scale(1.05);
}

.home-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(12px);
    opacity: 0.55;
    animation: floatOrb 8s ease-in-out infinite;
}

.home-hero-orb-1 {
    width: 220px;
    height: 220px;
    background: rgba(212, 165, 116, 0.28);
    top: 12%;
    left: -70px;
}

.home-hero-orb-2 {
    width: 260px;
    height: 260px;
    background: rgba(45, 90, 107, 0.18);
    bottom: 8%;
    right: -100px;
    animation-delay: 1.5s;
}

@keyframes floatOrb {

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

    50% {
        transform: translateY(-18px) scale(1.04);
    }
}

.home-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.92fr);
    align-items: center;
    gap: 4rem;
    min-height: calc(100vh - var(--nav-height) - 80px);
}

.home-hero-copy {
    animation: fadeUp 0.8s ease both;
}

.hero-kicker,
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--primary);
    background: rgba(45, 90, 107, 0.08);
    border: 1px solid rgba(45, 90, 107, 0.12);
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}

.hero-kicker .material-symbols-outlined {
    font-size: 1.05rem;
}

.home-hero-copy h1 {
    font-size: clamp(2.0rem, 5vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 1.35rem;
    max-width: 820px;
}

.home-hero-copy p {
    color: var(--text-muted);
    font-size: clamp(1rem, 2vw, 1.22rem);
    line-height: 1.85;
    max-width: 680px;
}

.home-hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-main-btn,
.hero-secondary-btn {
    padding: 1rem 1.45rem;
    border-radius: 0.95rem;
    font-weight: 800;
}

.hero-main-btn {
    box-shadow: 0 18px 42px rgba(45, 90, 107, 0.28);
}

.home-hero-trust {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 2.3rem;
    margin-bottom: 4rem;
}

.home-hero-trust div {
    min-width: 120px;
    padding: 1rem 1.15rem;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 1rem;
    box-shadow: 0 12px 32px rgba(45, 90, 107, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.home-hero-trust strong {
    display: block;
    color: var(--primary);
    font-family: 'Sora', sans-serif;
    font-size: 1.45rem;
    line-height: 1;
}

.home-hero-trust span {
    display: block;
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-top: 0.35rem;
    font-weight: 600;
}

.home-hero-visual {
    position: relative;
    min-height: 560px;
    animation: fadeInScale 0.9s ease 0.15s both;
}

.hero-image-main {
    position: absolute;
    inset: 0 0 0 4rem;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 34px 90px rgba(45, 90, 107, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.65);
}

.hero-image-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.24));
}

.hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroImageMove 12s ease-in-out infinite alternate;
}

@keyframes heroImageMove {
    from {
        transform: scale(1.02) translateX(0);
    }

    to {
        transform: scale(1.09) translateX(-12px);
    }
}

.hero-image-badge {
    position: absolute;
    z-index: 2;
    top: 1.3rem;
    right: 1.3rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    color: var(--primary);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    font-size: 0.82rem;
    font-weight: 800;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.hero-floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    width: min(280px, 78%);
    padding: 1rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 18px 52px rgba(45, 90, 107, 0.16);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.hero-floating-card .material-symbols-outlined {
    width: 44px;
    height: 44px;
    border-radius: 0.9rem;
    background: var(--primary-light);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-floating-card strong {
    display: block;
    font-size: 0.95rem;
}

.hero-floating-card small {
    display: block;
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-top: 0.15rem;
}

.hero-floating-card-top {
    left: 0;
    top: 18%;
    animation: floatCard 4.5s ease-in-out infinite;
}

.hero-floating-card-bottom {
    right: -0.75rem;
    bottom: 14%;
    animation: floatCard 4.5s ease-in-out infinite 0.8s;
}

@keyframes floatCard {

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

    50% {
        transform: translateY(-12px);
    }
}

.hero-search-panel {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    gap: 1rem;
    align-items: center;
    margin-top: -1.5rem;
    padding: 1rem;
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 60px rgba(45, 90, 107, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.hero-search-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    border-radius: 1rem;
    background: rgba(249, 247, 244, 0.72);
}

.hero-search-item .material-symbols-outlined {
    color: var(--primary);
    background: var(--primary-light);
    border-radius: 0.75rem;
    padding: 0.55rem;
}

.hero-search-item small {
    display: block;
    color: var(--text-muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 800;
}

.hero-search-item strong {
    display: block;
    font-size: 0.92rem;
}

.hero-panel-btn {
    height: 100%;
    border-radius: 1rem;
    white-space: nowrap;
}

/* Sections */
.home-section {
    padding: 5rem 0;
}

.section-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.2rem;
}

.section-heading-row h2,
.section-heading-center h2,
.experience-content h2,
.home-cta-card h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    letter-spacing: -0.045em;
}

.section-heading-center {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3rem;
}

/* Experience */
.experience-section {
    padding: 5rem 0;
    background:
        linear-gradient(135deg, rgba(45, 90, 107, 0.06), rgba(212, 165, 116, 0.08)),
        var(--surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.experience-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 4rem;
    align-items: center;
}

.experience-image {
    border-radius: 2rem;
    overflow: hidden;
    min-height: 520px;
    box-shadow: 0 26px 76px rgba(45, 90, 107, 0.16);
}

.experience-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.experience-content p {
    font-size: 1.02rem;
    line-height: 1.8;
}

.experience-list {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.experience-list>div {
    display: flex;
    gap: 1rem;
    padding: 1.05rem;
    border-radius: 1rem;
    background: var(--surface);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.experience-list .material-symbols-outlined {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 0.85rem;
    color: var(--primary);
    background: var(--primary-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.experience-list strong {
    display: block;
    margin-bottom: 0.2rem;
}

.experience-list p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Feature Bento */
.home-highlights {
    background: var(--background);
}

.feature-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.feature-card {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    border-radius: 1.35rem;
    background: var(--surface);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    right: -50px;
    top: -50px;
    width: 140px;
    height: 140px;
    background: rgba(212, 165, 116, 0.14);
    border-radius: 50%;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.feature-card-large {
    grid-row: span 2;
    background:
        linear-gradient(135deg, rgba(45, 90, 107, 0.92), rgba(45, 90, 107, 0.78)),
        url('https://images.unsplash.com/photo-1618773928121-c32242e63f39?q=80&w=1200&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: white;
}

.feature-card-large h3,
.feature-card-large p {
    color: white;
}

.feature-card-wide {
    grid-column: span 2;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-light);
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.feature-card-large .feature-icon {
    background: rgba(255, 255, 255, 0.16);
    color: white;
}

.feature-icon .material-symbols-outlined {
    font-size: 2rem;
}

.feature-card h3 {
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* CTA */
.home-cta-section {
    padding: 2rem 0 5rem;
}

.home-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: clamp(2rem, 5vw, 3.5rem);
    border-radius: 2rem;
    color: white;
    background:
        linear-gradient(135deg, rgba(45, 90, 107, 0.95), rgba(31, 63, 79, 0.94)),
        url('https://images.unsplash.com/photo-1564501049412-61c2a3083791?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    box-shadow: 0 28px 82px rgba(45, 90, 107, 0.22);
}

.home-cta-card .section-eyebrow {
    color: white;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
}

.home-cta-card h2,
.home-cta-card p {
    color: white;
}

.home-cta-card p {
    opacity: 0.86;
    max-width: 680px;
    line-height: 1.75;
}

/* Footer */
.footer-enhanced {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-enhanced>div:first-child {
    max-width: 420px;
}

.footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 600;
}

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

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.96);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 1100px) {
    .home-hero-inner {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 3rem;
        padding-top: 2rem;
    }

    .home-hero-visual {
        min-height: 520px;
    }

    .hero-image-main {
        inset: 0;
    }

    .hero-search-panel {
        grid-template-columns: 1fr 1fr;
    }

    .hero-panel-btn {
        grid-column: span 2;
        width: 100%;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .feature-bento-grid {
        grid-template-columns: 1fr 1fr;
    }

    .feature-card-large,
    .feature-card-wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .home-hero {
        padding-top: 2.5rem;
    }

    .home-hero-copy h1 {
        font-size: clamp(2.4rem, 12vw, 4rem);
    }

    .home-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-main-btn,
    .hero-secondary-btn {
        width: 100%;
    }

    .home-hero-trust {
        display: grid;
        grid-template-columns: 1fr;
    }

    .home-hero-visual {
        min-height: 430px;
    }

    .hero-image-main {
        inset: 0;
    }

    .hero-floating-card {
        position: absolute;
        width: 82%;
    }

    .hero-floating-card-top {
        top: 8%;
        left: 0.75rem;
    }

    .hero-floating-card-bottom {
        right: 0.75rem;
        bottom: 8%;
    }

    .hero-search-panel {
        grid-template-columns: 1fr;
        margin-top: 2rem;
    }

    .hero-panel-btn {
        grid-column: auto;
    }

    .section-heading-row {
        align-items: flex-start;
    }

    .home-section,
    .experience-section {
        padding: 3.5rem 0;
    }

    .experience-image,
    .experience-image img {
        min-height: 340px;
    }

    .feature-bento-grid {
        grid-template-columns: 1fr;
    }

    .feature-card-large,
    .feature-card-wide {
        grid-column: auto;
        grid-row: auto;
    }

    .home-cta-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-cta-card .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .home-hero-visual {
        min-height: 360px;
    }

    .hero-image-main {
        border-radius: 1.35rem;
    }

    .hero-floating-card {
        padding: 0.85rem;
    }

    .hero-floating-card small {
        display: none;
    }

    .hero-search-item {
        align-items: flex-start;
    }
}