:root {
    --background: 0 0% 100%;
    --foreground: 222.2 84% 4.9%;

    --primary: 221 83% 53%;
    --primary-foreground: 210 40% 98%;

    --accent: 221 83% 53%;
    --accent-foreground: 210 40% 98%;

    --muted-foreground: 215.4 16.3% 46.9%;

    --card: 0 0% 100%;
    --card-border: 220 13% 91%;

    --radius: 0.75rem;
}

.landing-navbar {
    background: #fff;
    transition: all .3s ease;
}

/* AUTH BUTTON BASE */
.landing-auth .btn {
    padding: 6px 5px;
    font-weight: 500;
    border-radius: 8px;
}

/* LOGIN BUTTON */
.landing-btn-login {
    background: #fff;
    color: #000;
    border: 1px solid #d1d5db;
}

.partner-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background-color: #fff;
}

/* SIGNUP BUTTON */
.landing-btn-signup {
    color: #fff;
    padding: 0.5rem 1.5rem;
    width: 100%;
}





.hero-section {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh; /* modern mobile fix */
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 90px; /* Prevent navbar overlap */
}


/* Dark overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.55)
    );
}

/* Content above overlay */
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 4rem 0;
    text-align: left;
}
.hero-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    
}

/* Prevent overly wide text */
.hero-description {
    max-width: 640px;
    text-align: left;
}



/* =============================
   GLOBAL UTILITIES
============================= */

.section-padding {
    padding: 5rem 0;
}

.text-muted-custom {
    color: hsl(var(--muted-foreground));
}




/* =============================
   ICON CIRCLE SYSTEM
============================= */

.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    background-color: hsl(var(--accent) / 0.25);
    color: hsl(var(--accent));
}

.escrow-header {
    max-width: 720px;
    margin: 0 auto 4rem;
}


.escrow-section {
    background-color: hsl(var(--background));
}

.escrow-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2.5rem;
    position: relative;
    text-align: center;
     z-index: 1;
}



.escrow-steps-wrapper {
    position: relative;
}

.escrow-steps-line {
    position: absolute;
    top: 38px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: #80808017;
    z-index: 0;
}


.escrow-step-number {
    position: absolute;
    top: -6px;
    right: calc(50% - 4px);
    transform: translateX(100%);
    background: hsl(152.18deg 68.75% 31.37%);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: .85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}


.escrow-step-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: .6rem;
}

.escrow-step-desc {
    font-size: .95rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    max-width: 240px;
    margin: 0 auto;
}


.escrow-icon-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}
.escrow-icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: hsl(152.18deg 68.75% 31.37% / 9%);
    color: hsl(152.18deg 68.75% 31.37%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

@media (max-width: 992px) {
    .escrow-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .escrow-steps-line {
        display: none;
    }
}




.buyer-trust-section {
    padding: 80px 0;
    background: #f8faf9;
}

/* Header */
.buyer-trust-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 34px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.section-subtitle {
    max-width: 620px;
    font-size: 17px;
    color: #6b7280;
    line-height: 1.6;
}

/* ===============================
   GRID LAYOUT
================================ */

.buyer-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

/* ===============================
   CARD STYLING
================================ */

.buyer-trust-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 34px;
    transition: all 0.25s ease;
}

/* subtle hover like screenshot */
.buyer-trust-card:hover {
    box-shadow: 0 6px 22px rgba(0,0,0,0.05);
    transform: translateY(-2px);
}

/* Inner flex layout */
.trust-card-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* ===============================
   ICON
================================ */

.trust-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #e8f5ee;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;
}

.trust-icon-wrapper i {
    font-size: 22px;
    color: #1c8c5e;
}

/* ===============================
   TEXT CONTENT
================================ */

.trust-title {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
}

.trust-desc {
    font-size: 15.5px;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {

    .buyer-trust-grid {
        grid-template-columns: 1fr;
    }

    .buyer-trust-card {
        padding: 28px;
    }
}

@media (max-width: 576px) {

    .buyer-trust-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 15px;
    }
}



//* ======================================================
   WHO SHOULD USE ESCROW
====================================================== */

.escrow-audience-section {
    padding: 100px 0;
    background: #f8f9fa;
}


/* ===== Header ===== */

.escrow-audience-header {
    max-width: 720px;
    margin: 0 auto 70px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
    max-width: 620px;
}


/* ===== Grid Layout ===== */

.escrow-audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}


/* ===== Card ===== */

.escrow-audience-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.escrow-audience-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}


/* ===== Card Inner ===== */

.audience-card-inner {
    padding: 42px 32px 40px;
    height: 100%;
}


/* ===== Icon Circle ===== */

.audience-icon-wrapper {
    width: 74px;
    height: 74px;
    margin: 0 auto 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e6f4ea;
    border-radius: 50%;
}

.audience-icon-wrapper i {
    font-size: 30px;
    color: #198754; /* Bootstrap success */
}


/* ===== Title ===== */

.audience-title {
    font-size: 22px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 14px;
}


/* ===== Description ===== */

.audience-desc {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    max-width: 340px;
    margin: 0 auto;
}


/* ======================================================
   RESPONSIVE
====================================================== */

/* Large Tablets */
@media (max-width: 992px) {

    .escrow-audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* Mobile */
@media (max-width: 576px) {

    .escrow-audience-section {
        padding: 70px 0;
    }

    .escrow-audience-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section-title {
        font-size: 30px;
    }

    .section-subtitle {
        font-size: 16px;
    }

}




.escrow-cta-section {
    background-color: #198754;
    padding: 110px 0;
    color: #fff;
}


/* Wrapper Width Control */
.escrow-cta-wrapper {
    max-width: 720px;
    margin: 0 auto;
    color: #ffffff;
}


/* ===== Icon Circle ===== */

.cta-icon-wrapper {
    width: 78px;
    height: 78px;
    margin: 0 auto 30px;

    background: rgba(255,255,255,0.12);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

}

.cta-icon-wrapper i {
    font-size: 32px;
    color: #ffffff;
}


/* ===== Title ===== */

.cta-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 18px;
}


/* ===== Subtitle ===== */

.cta-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 38px;
}


/* ===== Buttons Wrapper ===== */

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}


/* ===== Primary Button (White) ===== */

.btn-cta-primary {
    background: #ffffff;
    color: #1f7f4f;
    border-radius: 8px;
    padding: 14px 28px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    background: #f1f5f3;
    color: #16643e;
}


/* ===== Outline Button ===== */

.btn-cta-outline {
    background: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255,255,255,0.35);
    border-radius: 8px;
    padding: 14px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: #ffffff;
}


/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 768px) {

    .escrow-cta-section {
        padding: 80px 0;
    }

    .cta-title {
        font-size: 30px;
    }

    .cta-subtitle {
        font-size: 16px;
    }

    .cta-actions {
        flex-direction: column;
        gap: 14px;
    }

    .btn-cta-primary,
    .btn-cta-outline {
        width: 100%;
        text-align: center;
    }
}

/* ======================================================
   FOOTER SECTION
====================================================== */

.arya-footer {
    background: #f5f6f7;
    padding: 70px 0 30px;
    font-size: 15px;
}


/* ===== Titles ===== */

.footer-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #111827;
}


/* ===== Links ===== */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #4b5563;
    text-decoration: none;
    transition: 0.25s ease;
    font-size: 15px;
}

.footer-links a:hover {
    color: #1f7f4f;
}


/* ===== Divider ===== */

.footer-divider {
    border-top: 1px solid #e5e7eb;
    margin: 40px 0 30px;
}


/* ======================================================
   FOOTER BOTTOM
====================================================== */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}


/* Brand */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand img {
    height: 34px;
}

.footer-brand span {
    color: #6b7280;
    font-size: 15px;
}


/* Policies */
.footer-policies {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    color: #6b7280;
    font-size: 14px;
}

.footer-policies a {
    color: #6b7280;
    text-decoration: none;
    transition: 0.25s ease;
}

.footer-policies a:hover {
    color: #1f7f4f;
}


/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 768px) {

    .arya-footer {
        padding: 60px 0 25px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-policies {
        gap: 14px;
    }
}

