:root {
    --bg-color: #Fdfbf7;
    --text-dark: #0f172a;
    --brand-green: #d1f875;
    --brand-green-hover: #bde06a;
    --brand-purple: #cbb4ff;
    --brand-blue: #a3e4f5;
    --surface: #ffffff;
    --border: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Nav */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(253, 251, 247, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--text-dark);
    border-radius: 8px;
    display: inline-block;
}

.nav-btn {
    background-color: var(--text-dark);
    color: var(--brand-green);
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--text-dark);
    transition: all 0.2s ease;
    cursor: pointer;
}

.nav-btn:hover {
    background-color: var(--brand-green);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 4px 4px 0px rgba(0,0,0,0.1);
}

/* Hero */
.hero {
    padding: 12rem 5% 6rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(203,180,255,0.15) 0%, rgba(253,251,247,1) 100%);
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    max-width: 1000px;
    margin-inline: auto;
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #475569;
}

/* Bento Grid Features */
.bento-section {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    grid-auto-rows: 320px;
}

.bento-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.bento-large {
    grid-column: span 2;
    background: var(--brand-green);
    border-color: var(--brand-green);
}

.bento-tall {
    grid-row: span 2;
    background: var(--text-dark);
    color: white;
    border-color: var(--text-dark);
}

.bento-card h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.tag {
    position: absolute;
    top: 2rem;
    left: 2.5rem;
    background: rgba(255,255,255,0.9);
    color: var(--text-dark);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.bento-tall .tag {
    background: rgba(255,255,255,0.1);
    color: white;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 5rem 5% 2rem;
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 4rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--brand-green);
}

.footer-col p, .footer-col a {
    color: #94a3b8;
    margin-bottom: 0.8rem;
    display: block;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: #64748b;
    font-size: 0.85rem;
}

/* Application Modal UI */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    z-index: 999;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.app-form {
    background: var(--surface);
    width: 100%;
    max-width: 600px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 3rem;
    position: relative;
    transform: translateY(50px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .app-form {
    transform: translateY(0);
}

.close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #f1f5f9;
    border: none;
    width: 40px; height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.close-btn:hover {
    background: #e2e8f0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #334155;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s;
    background: #f8fafc;
}

.form-control:focus {
    outline: none;
    border-color: var(--text-dark);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.1);
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

/* Custom Slider */
.slider-container {
    margin: 1.5rem 0 2.5rem;
    text-align: center;
    grid-column: span 2;
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
}

.amount-display {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

input[type=range] {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 28px;
    width: 28px;
    border-radius: 50%;
    background: var(--text-dark);
    cursor: pointer;
    margin-top: -12px;
    border: 4px solid var(--brand-green);
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    cursor: pointer;
    background: #cbd5e1;
    border-radius: 3px;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    text-align: center;
    display: block;
    margin-top: 1.5rem;
    grid-column: span 2;
}

@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
    }
    .bento-large, .bento-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group.full-width, .slider-container, .submit-btn {
        grid-column: span 1;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Trust Banner */
.trust-banner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 2rem 5%;
    background: #f8fafc;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    color: #475569;
    font-weight: 600;
    font-size: 0.95rem;
}

/* About & Traction Section */
.about-section {
    padding: 8rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.about-content p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-box {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.stat-box h4 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-green);
    -webkit-text-stroke: 1px var(--text-dark);
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Process Section */
.process-section {
    padding: 6rem 5%;
    background: var(--text-dark);
    color: white;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    border-radius: 24px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--brand-green);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.process-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.process-card p {
    color: #94a3b8;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .about-section {
        grid-template-columns: 1fr;
        padding: 5rem 5%;
    }
    .process-grid {
        grid-template-columns: 1fr;
    }
    .trust-banner {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
}

/* DELETE ALL OF THIS FROM THE BOTTOM OF YOUR CSS FILE */
.custom-input-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 150px;
  font-family: sans-serif;
}

.custom-input-wrapper label {
  font-size: 14px;
  color: #333;
  margin-bottom: 6px;
  font-weight: 600;
}

#expiry {
  padding: 10px 14px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px; 
  outline: none;
  transition: border-color 0.2s ease;
}

#expiry:focus {
  border-color: #007BFF; 
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

#expiry::placeholder {
  color: #aaa;
}