:root {
    --primary-color: #1F7A63; /* Dark Green */
    --secondary-color: #F59E0B; /* Orange */
    --accent-color: #D97706; /* Darker orange for hover */
    --text-color: #111827;
    --text-light: #6B7280;
    --bg-color: #ffffff;
    --bg-light: #F3F4F6;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-color);
    letter-spacing: -0.025em;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* Utilities */
.text-center { text-align: center; }
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-light { color: var(--text-light); }
.font-bold { font-weight: 700; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    border: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

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

.btn-secondary:hover {
    background-color: #175e4c;
}

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

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

/* Header */
header {
    background-color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    display: flex;
    gap: 25px;
}

nav ul li a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-color);
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0 100px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(243, 244, 246, 0.8), rgba(255, 255, 255, 1));
}

.hero .urgency-tag {
    display: inline-block;
    background: #FEF2F2;
    color: #DC2626;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid #FECACA;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.hero p.desc {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 500;
}

.hero .price-hint {
    background-color: #ECFDF5;
    color: #065F46;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 40px;
    border: 1px solid #A7F3D0;
}

/* Hero Form */
.hero-form {
    background: var(--white);
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #E5E7EB;
}

.form-group {
    flex: 1;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #D1D5DB;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: #F9FAFB;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

/* How It Works */
.how-it-works {
    padding: 60px 0;
    background-color: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
    margin-top: 40px;
}

.step-card {
    padding: 20px;
}

.step-icon {
    width: 64px;
    height: 64px;
    background-color: #ECFDF5;
    color: var(--primary-color);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.step-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Popular Menus */
.menus {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.menu-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    border: 1px solid #E5E7EB;
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.menu-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #EF4444;
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    z-index: 2;
    text-transform: uppercase;
}

.menu-badge.savings {
    background: var(--primary-color);
}

.menu-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.menu-content {
    padding: 24px;
}

.menu-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.menu-list {
    margin-bottom: 20px;
}

.menu-list li {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-list li i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.menu-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 4px;
}

.menu-price-hint {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.menu-social-proof {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #059669;
    font-weight: 600;
    margin-bottom: 15px;
    background: #ECFDF5;
    padding: 6px 10px;
    border-radius: 6px;
}

/* Trust Block */
.trust-block {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--white);
}

.trust-block h2 {
    color: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    text-align: center;
}

.trust-item i {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.trust-item h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.trust-item .trust-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: #A7F3D0;
    margin-top: 10px;
}

/* Use Cases */
.use-cases {
    padding: 80px 0;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.case-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}

.case-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.1));
}

.case-card:hover img {
    transform: scale(1.05);
}

.case-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.case-content h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin: 0;
}

/* Real Content Proof */
.proof-section {
    padding: 0 0 80px;
}

.proof-banner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
}

.proof-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proof-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}

.proof-text {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-color);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}

.proof-text i {
    color: #10B981;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

/* Urgency Banner */
.urgency-banner {
    background: #FEF3C7;
    border: 1px solid #FDE68A;
    padding: 12px;
    text-align: center;
    font-weight: 700;
    color: #92400E;
    border-radius: 8px;
    margin: 40px auto;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* CTA Block */
.cta-block {
    background: var(--bg-light);
    padding: 80px 0;
    text-align: center;
}

.cta-block h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Footer */
footer {
    background: #111827;
    color: #D1D5DB;
    padding: 60px 0 20px;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    display: inline-block;
}

.footer-grid h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

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

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
}

/* Floating WhatsApp */
.float-wa {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.float-wa:hover {
    transform: scale(1.05) translateY(-5px);
    color: white;
}

.float-wa i {
    font-size: 1.5rem;
}

/* Popup */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.popup-overlay.active .popup-content {
    transform: translateY(0);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.25rem; }
    .hero-form { flex-direction: column; }
    .steps-grid, .menu-grid, .trust-grid, .cases-grid, .footer-grid { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; }
    .proof-text { font-size: 1rem; padding: 15px 20px; }
    nav ul { display: none; }
    
    /* Make form inputs larger on mobile */
    .form-control { padding: 15px; font-size: 1.1rem; }
    .btn { padding: 15px; }
}
