/* ============================================
   Grey.co Inspired Landing Page Styles
   WeliexPay Landing Page Redesign
   ============================================ */

/* Google Fonts - Clean modern font */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* =================== Variables =================== */
:root {
    --grey-font: 'Plus Jakarta Sans', 'Albert Sans', sans-serif;
    --grey-dark: #0a0a0a;
    --grey-text: #555;
    --grey-text-light: #888;
    --grey-white: #ffffff;
    --grey-off-white: #f8f8f8;
    --grey-light-bg: #f5f5f5;
    --grey-card-pink: #fce4ec;
    --grey-card-mint: #e0f2f1;
    --grey-card-blue: #e3f2fd;
    --grey-card-lavender: #ede7f6;
    --grey-card-peach: #fff3e0;
    --grey-card-sage: #e8f5e9;
    --grey-accent: hsl(var(--base));
    --grey-accent-two: hsl(var(--base-two));
    --grey-radius: 20px;
    --grey-radius-lg: 28px;
    --grey-radius-xl: 40px;
    --grey-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* =================== Global Landing Overrides =================== */
.grey-landing {
    font-family: var(--grey-font);
    color: var(--grey-dark);
    overflow-x: hidden;
}

.grey-landing .header {
    background: var(--grey-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: none;
    transition: var(--grey-transition);
}

.grey-landing .header.fixed-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.06);
}

.grey-landing .nav-link {
    font-weight: 500;
    color: var(--grey-dark) !important;
    font-size: 15px;
    letter-spacing: -0.01em;
}

.grey-landing .nav-link:hover {
    color: var(--grey-accent) !important;
}

.grey-landing .btn--base {
    background: var(--grey-dark);
    color: var(--grey-white);
    border: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 28px;
    transition: var(--grey-transition);
}

.grey-landing .btn--base:hover {
    background: #222;
    transform: translateY(-1px);
}

.grey-landing .grey-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.grey-landing .btn--grey-login {
    background: transparent;
    color: var(--grey-dark);
    border: 1.5px solid rgba(0, 0, 0, 0.12);
}

.grey-landing .btn--grey-login:hover {
    background: var(--grey-off-white);
    border-color: rgba(0, 0, 0, 0.2);
    color: var(--grey-dark);
}

.grey-landing .btn--grey-outline {
    background: transparent;
    color: var(--grey-dark);
    border: 1.5px solid rgba(0, 0, 0, 0.12);
}

.grey-landing .btn--grey-outline:hover {
    background: var(--grey-dark);
    border-color: var(--grey-dark);
    color: var(--grey-white);
}

/* =================== Hero Section =================== */
.grey-hero {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, #fafbfc 0%, var(--grey-white) 55%);
    position: relative;
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    align-items: center;
}

.grey-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.grey-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.grey-hero-orb--1 {
    top: -15%;
    right: -8%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, hsl(var(--base) / 0.14) 0%, transparent 70%);
}

.grey-hero-orb--2 {
    bottom: -20%;
    left: -12%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, hsl(var(--base-two) / 0.12) 0%, transparent 70%);
}

.grey-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
    opacity: 0.35;
}

.grey-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    margin-bottom: 20px;
    border-radius: 100px;
    background: var(--grey-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    font-size: 13px;
    font-weight: 600;
    color: var(--grey-text);
}

.grey-hero-badge i {
    color: hsl(var(--base));
}

.grey-hero-visual {
    position: relative;
    z-index: 2;
    min-height: 420px;
}

.grey-hero-mockup {
    position: relative;
    max-width: 420px;
    margin: 0 auto;
    padding: 12px;
    border-radius: 32px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4));
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(0, 0, 0, 0.04);
}

.grey-mockup-glow {
    position: absolute;
    inset: 10%;
    border-radius: 24px;
    background: linear-gradient(135deg, hsl(var(--base) / 0.2), hsl(var(--base-two) / 0.15));
    filter: blur(40px);
    z-index: 0;
}

.grey-hero-mockup img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 24px;
    display: block;
}

.grey-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--grey-white);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    animation: grey-float 5s ease-in-out infinite;
    z-index: 3;
}

.grey-float-card strong {
    display: block;
    font-size: 14px;
    color: var(--grey-dark);
    line-height: 1.2;
}

.grey-float-card small {
    display: block;
    font-size: 12px;
    color: var(--grey-text-light);
    margin-top: 2px;
}

.grey-float-card--1 {
    top: 12%;
    left: -4%;
}

.grey-float-card--2 {
    bottom: 10%;
    right: -6%;
    animation-delay: 1.2s;
}

.grey-float-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(var(--base) / 0.15), hsl(var(--base-two) / 0.1));
    color: hsl(var(--base));
    flex-shrink: 0;
}

.grey-float-icon--mint {
    background: #e0f2f1;
    color: #00796b;
}

@keyframes grey-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.grey-hero-content {
    position: relative;
    z-index: 2;
}

.grey-hero-title {
    font-family: var(--grey-font);
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--grey-dark);
    margin-bottom: 24px;
}

.grey-hero-title span {
    display: block;
}

.grey-hero-title .highlight {
    background: linear-gradient(135deg, hsl(var(--base)), hsl(var(--base-two)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.grey-hero-desc {
    font-size: 18px;
    line-height: 1.7;
    color: var(--grey-text);
    max-width: 480px;
    margin-bottom: 36px;
    font-weight: 400;
}

.grey-hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.grey-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--grey-dark);
    color: var(--grey-white);
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--grey-transition);
    border: none;
    cursor: pointer;
}

.grey-btn-primary:hover {
    background: #222;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    color: var(--grey-white);
}

.grey-btn-primary i {
    transition: transform 0.3s ease;
}

.grey-btn-primary:hover i {
    transform: translateX(4px);
}

.grey-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--grey-dark);
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--grey-transition);
    border: 1.5px solid rgba(0, 0, 0, 0.15);
}

.grey-btn-outline:hover {
    border-color: var(--grey-dark);
    background: var(--grey-off-white);
    color: var(--grey-dark);
}

.grey-hero-image {
    position: relative;
    z-index: 2;
}

.grey-hero-image img {
    width: 100%;
    max-width: 560px;
    border-radius: var(--grey-radius-lg);
    margin-left: auto;
    display: block;
}

.grey-hero .container.position-relative {
    z-index: 1;
}

/* =================== Trust Badges / As Seen On =================== */
.grey-trust {
    padding: 56px 0;
    background: var(--grey-white);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.grey-trust-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.grey-trust-copy {
    flex: 1;
    min-width: 260px;
}

.grey-trust-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.grey-trust-stat {
    text-align: center;
}

.grey-trust-stat-value {
    display: block;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--grey-dark);
    line-height: 1;
}

.grey-trust-stat-label {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--grey-text-light);
}

.grey-trust-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--grey-text-light);
    margin-bottom: 24px;
}

.grey-trust-logos {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.5;
}

.grey-trust-logos {
    justify-content: center;
}

.grey-trust-logos img {
    height: 40px;
    max-width: 100%;
    object-fit: contain;
    opacity: 0.85;
    transition: var(--grey-transition);
}

.grey-trust-logos img:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.grey-testimonial-kicker {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: hsl(var(--base));
    margin-bottom: 12px;
}

.grey-testimonial-avatar img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

/* =================== Features / Services Section =================== */
.grey-features {
    padding: 100px 0;
    background: var(--grey-white);
}

.grey-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--grey-text-light);
    margin-bottom: 16px;
    padding: 8px 16px;
    background: var(--grey-light-bg);
    border-radius: 100px;
}

.grey-section-title {
    font-family: var(--grey-font);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--grey-dark);
    margin-bottom: 20px;
}

.grey-section-desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--grey-text);
    max-width: 580px;
}

.grey-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.grey-feature-card {
    background: var(--grey-light-bg);
    border-radius: var(--grey-radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--grey-transition);
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    min-height: 380px;
}

.grey-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.grey-feature-card.card-pink { background: #fef0f5; }
.grey-feature-card.card-mint { background: #edf8f6; }
.grey-feature-card.card-blue { background: #eef4fb; }
.grey-feature-card.card-peach { background: #fef6ee; }
.grey-feature-card.card-lavender { background: #f3eefb; }
.grey-feature-card.card-sage { background: #eef6ef; }

.grey-feature-card-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--grey-text-light);
    margin-bottom: 12px;
}

.grey-feature-card-title {
    font-family: var(--grey-font);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--grey-dark);
    margin-bottom: 12px;
}

.grey-feature-card-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--grey-text);
    margin-bottom: 20px;
}

.grey-feature-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 14px;
    color: var(--grey-dark);
    text-decoration: none;
    transition: var(--grey-transition);
}

.grey-feature-card-link i {
    transition: transform 0.3s ease;
}

.grey-feature-card:hover .grey-feature-card-link i {
    transform: translateX(4px);
}

.grey-feature-card-image {
    margin-top: auto;
    border-radius: var(--grey-radius);
    overflow: hidden;
    max-height: 200px;
}

.grey-feature-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--grey-radius);
}

.grey-feature-card.card-large {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.grey-feature-card.card-large .grey-feature-card-content {
    flex: 1;
}

.grey-feature-card.card-large .grey-feature-card-image {
    flex: 1;
    max-height: 300px;
}

/* =================== Global Account Section =================== */
.grey-global-account {
    padding: 100px 0;
    background: var(--grey-dark);
    color: var(--grey-white);
    position: relative;
    overflow: hidden;
}

.grey-global-account::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, hsl(var(--base) / 0.15) 0%, transparent 70%);
}

.grey-global-account .grey-section-label {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.grey-global-account .grey-section-title {
    color: var(--grey-white);
}

.grey-global-account .grey-section-desc {
    color: rgba(255, 255, 255, 0.6);
}

.grey-global-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--grey-white);
    color: var(--grey-dark);
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--grey-transition);
    margin-top: 24px;
}

.grey-global-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
    color: var(--grey-dark);
}

.grey-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.grey-benefit-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--grey-radius);
    padding: 32px;
    transition: var(--grey-transition);
}

.grey-benefit-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.grey-benefit-number {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 16px;
    font-family: var(--grey-font);
}

.grey-benefit-title {
    font-family: var(--grey-font);
    font-size: 20px;
    font-weight: 700;
    color: var(--grey-white);
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.grey-benefit-icon {
    margin-top: 16px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--grey-white);
    font-size: 20px;
}

/* =================== How It Works =================== */
.grey-how-works {
    padding: 100px 0;
    background: var(--grey-off-white);
}

.grey-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.grey-step {
    text-align: center;
    padding: 40px 30px;
    border-radius: var(--grey-radius-lg);
    background: var(--grey-white);
    transition: var(--grey-transition);
    position: relative;
}

.grey-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.grey-step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(var(--base)), hsl(var(--base-two)));
    color: var(--grey-white);
    font-weight: 800;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.grey-step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.grey-step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.grey-step-title {
    font-family: var(--grey-font);
    font-size: 22px;
    font-weight: 700;
    color: var(--grey-dark);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.grey-step-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--grey-text);
}

/* =================== Social Impact / CSR =================== */
.grey-impact {
    padding: 100px 0;
    background: var(--grey-white);
}

.grey-impact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.grey-impact-image {
    border-radius: var(--grey-radius-xl);
    overflow: hidden;
}

.grey-impact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.grey-impact-content .grey-section-title {
    margin-bottom: 20px;
}

.grey-impact-desc {
    font-size: 17px;
    line-height: 1.8;
    color: var(--grey-text);
    margin-bottom: 30px;
}

/* =================== More Features =================== */
.grey-more-features {
    padding: 100px 0;
    background: var(--grey-off-white);
}

.grey-more-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.grey-more-card {
    background: var(--grey-white);
    border-radius: var(--grey-radius-lg);
    padding: 36px;
    transition: var(--grey-transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.grey-more-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.06);
}

.grey-more-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, hsl(var(--base) / 0.1), hsl(var(--base-two) / 0.1));
    color: hsl(var(--base));
}

.grey-more-card-title {
    font-family: var(--grey-font);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    color: var(--grey-dark);
}

.grey-more-card-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--grey-text);
}

/* =================== Testimonials =================== */
.grey-testimonials {
    padding: 100px 0;
    background: var(--grey-white);
    overflow: hidden;
}

.grey-testimonial-card {
    background: var(--grey-light-bg);
    border-radius: var(--grey-radius-lg);
    padding: 50px;
    margin: 0 10px;
}

.grey-testimonial-quote {
    font-family: var(--grey-font);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--grey-dark);
    margin-bottom: 30px;
    font-style: italic;
}

.grey-testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.grey-testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
}

.grey-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grey-testimonial-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--grey-dark);
}

.grey-testimonial-role {
    font-size: 14px;
    color: var(--grey-text-light);
    margin-top: 2px;
}

/* =================== Stats / Counter =================== */
.grey-stats {
    padding: 80px 0;
    background: var(--grey-off-white);
}

.grey-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.grey-stat-item {
    padding: 20px;
}

.grey-stat-number {
    font-family: var(--grey-font);
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, hsl(var(--base)), hsl(var(--base-two)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.grey-stat-label {
    font-size: 15px;
    color: var(--grey-text);
    font-weight: 500;
}

/* =================== App Download / CTA =================== */
.grey-app-download {
    padding: 100px 0;
    background: var(--grey-dark);
    color: var(--grey-white);
    position: relative;
    overflow: hidden;
}

.grey-app-download::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, hsl(var(--base-two) / 0.2) 0%, transparent 70%);
}

.grey-app-content {
    position: relative;
    z-index: 2;
}

.grey-app-content--centered {
    text-align: center;
}

.grey-app-content--centered .grey-app-desc {
    margin-left: auto;
    margin-right: auto;
}

.grey-app-content--centered .grey-app-buttons {
    justify-content: center;
}

.grey-app-title {
    font-family: var(--grey-font);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--grey-white);
    margin-bottom: 16px;
}

.grey-app-desc {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
    max-width: 400px;
}

.grey-app-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.grey-app-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--grey-white);
    padding: 14px 24px;
    border-radius: 14px;
    text-decoration: none;
    transition: var(--grey-transition);
}

.grey-app-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
    color: var(--grey-white);
}

.grey-app-btn-icon {
    font-size: 28px;
}

.grey-app-btn-text {
    text-align: left;
}

.grey-app-btn-text small {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.grey-app-btn-text span {
    display: block;
    font-size: 16px;
    font-weight: 700;
}

.grey-app-image {
    position: relative;
    z-index: 2;
    text-align: center;
}

.grey-app-image img {
    max-width: 380px;
    width: 100%;
    border-radius: var(--grey-radius-lg);
}

/* =================== Footer Overrides =================== */
.grey-landing .footer-area {
    background: var(--grey-dark) !important;
    background-image: none !important;
    color: rgba(255, 255, 255, 0.6);
    padding-top: 0;
}

.grey-landing .footer-top {
    padding-top: 60px;
}

.grey-landing .newsletter {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--grey-radius-lg);
    padding: 40px;
}

.grey-landing .newsletter-title {
    color: var(--grey-white);
    font-family: var(--grey-font);
    font-weight: 700;
}

.grey-landing .footer-item__title {
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--grey-font);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.1em;
}

.grey-landing .footer-menu__link {
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    transition: var(--grey-transition);
}

.grey-landing .footer-menu__link:hover {
    color: var(--grey-white);
}

.grey-landing .bottom-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.grey-landing .bottom-footer-text {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.grey-landing .bottom-footer-text a {
    color: rgba(255, 255, 255, 0.6);
}

.grey-landing .social-list__link {
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

.grey-landing .social-list__link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--grey-white);
}

/* =================== FAQ Section =================== */
.grey-faq {
    padding: 100px 0;
    background: var(--grey-white);
}

.grey-faq-grid {
    max-width: 800px;
    margin: 50px auto 0;
}

.grey-faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.grey-faq-question {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--grey-transition);
}

.grey-faq-question h5 {
    font-family: var(--grey-font);
    font-size: 18px;
    font-weight: 600;
    color: var(--grey-dark);
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.grey-faq-question .faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--grey-light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--grey-transition);
    font-size: 14px;
    color: var(--grey-dark);
}

.grey-faq-item.active .grey-faq-question .faq-icon {
    background: var(--grey-dark);
    color: var(--grey-white);
    transform: rotate(45deg);
}

.grey-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.grey-faq-item.active .grey-faq-answer {
    max-height: 300px;
}

.grey-faq-answer p {
    padding: 0 0 24px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--grey-text);
}

/* =================== Animations =================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.grey-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.grey-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.grey-animate-delay-1 { transition-delay: 0.1s; }
.grey-animate-delay-2 { transition-delay: 0.2s; }
.grey-animate-delay-3 { transition-delay: 0.3s; }
.grey-animate-delay-4 { transition-delay: 0.4s; }
.grey-animate-delay-5 { transition-delay: 0.5s; }
.grey-animate-delay-6 { transition-delay: 0.6s; }

/* =================== Responsive =================== */
@media (max-width: 1199px) {
    .grey-hero {
        min-height: auto;
        padding: 80px 0 60px;
    }

    .grey-hero-title {
        font-size: clamp(36px, 5vw, 56px);
    }

    .grey-feature-card.card-large {
        flex-direction: column;
    }

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

@media (max-width: 991px) {
    .grey-hero {
        padding: 60px 0;
        text-align: center;
    }

    .grey-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .grey-hero-cta {
        justify-content: center;
    }

    .grey-hero-image {
        margin-top: 50px;
    }

    .grey-hero-image img {
        margin: 0 auto;
    }

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

    .grey-feature-card.card-large {
        grid-column: span 1;
    }

    .grey-steps {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .grey-impact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .grey-benefit-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 767px) {
    .grey-hero-title {
        font-size: 36px;
    }

    .grey-feature-card {
        padding: 28px;
        min-height: auto;
    }

    .grey-testimonial-card {
        padding: 30px;
    }

    .grey-testimonial-quote {
        font-size: 18px;
    }

    .grey-more-grid {
        grid-template-columns: 1fr;
    }

    .grey-app-buttons {
        flex-direction: column;
    }

    .grey-app-image {
        margin-top: 40px;
    }

    .grey-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

@media (max-width: 575px) {
    .grey-hero-cta {
        flex-direction: column;
    }

    .grey-btn-primary,
    .grey-btn-outline {
        width: 100%;
        justify-content: center;
    }

    .grey-trust-logos {
        gap: 24px;
        justify-content: center;
    }
}

/* =================== Utility Helpers =================== */
.grey-text-center { text-align: center; }
.grey-mx-auto { margin-left: auto; margin-right: auto; }
.grey-mb-0 { margin-bottom: 0; }

/* =================== Header Clean Override =================== */
.grey-landing .header {
    padding: 8px 0;
}

.grey-landing .navbar-brand img {
    height: 36px;
    width: auto;
}

.grey-landing .navbar-nav .nav-link {
    font-family: var(--grey-font);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: var(--grey-transition);
}

.grey-landing .navbar-nav .nav-link:hover {
    background: var(--grey-light-bg);
}

.grey-landing .header-right .btn--base,
.grey-landing .header-right .btn {
    font-family: var(--grey-font);
    background: var(--grey-dark);
    color: var(--grey-white);
    border: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 24px;
    transition: var(--grey-transition);
}

.grey-landing .header-right .btn--base:hover,
.grey-landing .header-right .btn:hover {
    background: #222;
    transform: translateY(-1px);
}

/* =================== Slick Slider Override =================== */
.grey-landing .slick-dots {
    bottom: -40px;
}

.grey-landing .slick-dots li button:before {
    font-size: 10px;
    color: var(--grey-dark);
    opacity: 0.2;
}

.grey-landing .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--grey-dark);
}

/* =================== Preloader Override =================== */
.grey-landing .banner-section {
    display: none;
}

/* =================== Hero Micro Text =================== */
.grey-hero-micro {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 24px;
    font-size: 13px;
    color: var(--grey-text-light);
    font-weight: 500;
}

.grey-hero-micro span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.grey-hero-micro i {
    color: hsl(var(--base));
    font-size: 12px;
}

/* =================== Trust Desc =================== */
.grey-trust-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--grey-text);
    max-width: 600px;
    margin-bottom: 20px;
}

/* =================== About Section =================== */
.grey-about {
    padding: 100px 0;
    background: var(--grey-off-white);
}

.grey-about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.grey-about-image {
    border-radius: var(--grey-radius-xl);
    overflow: hidden;
}

.grey-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
    border-radius: var(--grey-radius-xl);
}

.grey-about-desc {
    font-size: 17px;
    line-height: 1.8;
    color: var(--grey-text);
    margin-bottom: 30px;
}

/* =================== Feature Card Icon Wrap =================== */
.grey-feature-card-icon-wrap {
    margin-top: auto;
    font-size: 48px;
    color: hsl(var(--base));
    opacity: 0.6;
    padding-top: 20px;
}

/* =================== Why Choose Section =================== */
.grey-why-choose {
    padding: 100px 0;
    background: var(--grey-white);
}

.grey-why-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
}

.grey-why-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--grey-light-bg);
    border-radius: 100px;
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 600;
    color: var(--grey-dark);
    transition: var(--grey-transition);
}

.grey-why-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    background: var(--grey-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.grey-why-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(var(--base)), hsl(var(--base-two)));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

/* =================== Business List =================== */
.grey-biz-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 32px;
}

.grey-biz-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 0;
}

.grey-biz-list li i {
    color: hsl(var(--base-two));
    font-size: 18px;
}

/* =================== Security Section =================== */
.grey-security {
    padding: 100px 0;
    background: var(--grey-off-white);
}

.grey-security-wrapper {
    text-align: center;
}

.grey-security-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(var(--base)), hsl(var(--base-two)));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 24px;
}

.grey-security-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
}

.grey-security-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--grey-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 100px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--grey-dark);
    transition: var(--grey-transition);
}

.grey-security-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.grey-security-badge i {
    color: hsl(var(--base));
    font-size: 18px;
}

/* =================== Avatar Placeholder =================== */
.grey-avatar-placeholder {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(var(--base)), hsl(var(--base-two)));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    font-family: var(--grey-font);
}

/* =================== Final CTA Section =================== */
.grey-final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, hsl(var(--base)), hsl(var(--base-two)));
    position: relative;
    overflow: hidden;
}

.grey-final-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.grey-final-cta::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.grey-final-cta-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
}

.grey-final-cta-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.grey-final-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =================== Responsive - New Sections =================== */
@media (max-width: 991px) {
    .grey-about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .grey-about-image img {
        min-height: 300px;
    }

    .grey-why-grid {
        gap: 12px;
    }

    .grey-why-item {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .grey-hero-micro {
        flex-direction: column;
        gap: 8px;
    }

    .grey-hero-visual {
        min-height: 320px;
        margin-top: 20px;
    }

    .grey-float-card--1 {
        left: 0;
        top: 0;
    }

    .grey-float-card--2 {
        right: 0;
        bottom: 0;
    }

    .grey-trust-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .grey-trust-stats {
        width: 100%;
        justify-content: space-between;
    }

    .grey-landing .grey-header-actions {
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .grey-security-badges {
        flex-direction: column;
        align-items: center;
    }

    .grey-final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
