/* Base & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    color: #2C3E50;
    line-height: 1.6;
    background-color: #FAFAFA;
    scroll-behavior: smooth;
}

h1,
h2,
h3 {
    color: #1A252F;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Color Palette */
:root {
    --primary: #27AE60;
    --primary-dark: #219150;
    --bg-light: #FFFFFF;
    --bg-alt: #F4F6F7;
    --text-muted: #7F8C8D;
}

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

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

.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

/* Navigation */
nav {
    background: var(--bg-light);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.nav-links a:hover {
    color: var(--primary);
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 5rem 10%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.section-title span {
    color: var(--primary);
}

/* Hero Section */
.hero {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(250, 250, 250, 0.7), rgba(250, 250, 250, 0.9)), url('../assets/hero-image.jpg') center/cover;
}

.hero h1 {
    font-size: 4rem;
    max-width: 800px;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.trust-banner {
    display: flex;
    gap: 2rem;
    margin-top: 4rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

/* Cards */
.card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: 0.3s;
    border: 1px solid #eee;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Map & Forms */
.map-container {
    width: 100%;
    height: 400px;
    background: #e0e0e0;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

input,
select,
textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

/* Accordion (FAQ) */
details {
    background: var(--bg-light);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    cursor: pointer;
}

summary {
    font-weight: 600;
    outline: none;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

summary::-webkit-details-marker {
    display: none;
}

details[open] summary {
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Earnings / Financial Example Box */
.earnings-box {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.04), rgba(39, 174, 96, 0.1));
    border: 1px solid rgba(39, 174, 96, 0.25);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.earnings-box h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.earnings-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(39, 174, 96, 0.2);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.earnings-row:last-child {
    border-bottom: none;
    font-weight: 700;
    color: #1A252F;
    font-size: 1rem;
    padding-top: 0.8rem;
    margin-top: 0.3rem;
}

.earnings-row span:last-child {
    color: var(--primary);
    font-weight: 700;
}

.earnings-row:last-child span:last-child {
    font-size: 1.1rem;
}

/* Anti-kiosk callouts */
.anti-kiosk-list {
    list-style: none;
    margin: 1.2rem 0;
}

.anti-kiosk-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.35rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.anti-kiosk-list li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    min-width: 16px;
    margin-top: 1px;
}

/* 60-Day Guarantee Banner */
.guarantee-banner {
    background: linear-gradient(135deg, #1A252F 0%, #2C3E50 100%);
    border-radius: 20px;
    padding: 3.5rem;
    text-align: center;
    max-width: 820px;
    margin: 4rem auto;
    color: white;
    position: relative;
    overflow: hidden;
}

.guarantee-banner::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(39, 174, 96, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.guarantee-banner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(39, 174, 96, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.guarantee-badge-pill {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.guarantee-banner h3 {
    font-size: 1.9rem;
    color: white;
    margin-bottom: 0.8rem;
}

.guarantee-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.guarantee-stat-item {
    text-align: center;
}

.guarantee-stat-item .stat-num {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.guarantee-stat-item .stat-label {
    font-size: 0.78rem;
    color: #7f8c8d;
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Trust Badges Bar (above footer) */
.trust-badges-bar {
    background: #1A252F;
    padding: 2rem 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #95a5a6;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.trust-badge-item .badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Pill label */
.pill-label {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

/* Footer */
footer {
    background: #111d28;
    color: white;
    padding: 3rem 10%;
    text-align: center;
}