:root {
    --primary: #f59e0b; /* Amber/Rice theme */
    --primary-hover: #d97706;
    --bg-main: #ffffff;
    --bg-light: #f3f4f6;
    --text-main: #111827;
    --text-muted: #4b5563;
    --border-color: #e5e7eb;
    --radius: 12px;
    --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: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--bg-light);
}

/* Navbar */
.navbar {
    border-bottom: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.95);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}
.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}
.nav-links {
    display: flex;
    gap: 32px;
}
.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
}
.nav-links a:hover {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
}
.btn-primary {
    background-color: var(--primary);
    color: #fff;
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}
.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.btn-large {
    padding: 14px 32px;
    font-size: 16px;
}
.btn-block {
    display: block;
    width: 100%;
    padding: 14px;
}

/* Sections */
.section {
    padding: 80px 0;
}
.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 48px;
}

/* Hero */
.hero {
    padding: 100px 0;
}
.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-main) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
}
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Grids */
.grid {
    display: grid;
    gap: 24px;
}
.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

/* Cards */
.card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.card-icon {
    font-size: 40px;
    margin-bottom: 24px;
}
.card h3 {
    font-size: 20px;
    margin-bottom: 16px;
}
.card p {
    color: var(--text-muted);
}
.flex-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Pricing */
.pricing-card {
    text-align: center;
    position: relative;
}
.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}
.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}
.price {
    font-size: 40px;
    font-weight: 800;
    margin: 24px 0;
    color: var(--primary);
}
.price span {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: normal;
}
.features-list {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}
.features-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-muted);
}
.features-list li:last-child {
    border-bottom: none;
}

/* Reviews */
.review-card .stars {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 16px;
}
.review-card .reviewer {
    margin-top: 16px;
    font-weight: 600;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}
.faq-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
}
.faq-item p {
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: var(--text-main);
    color: #fff;
    padding: 60px 0 40px;
    text-align: center;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
}
.footer-links a {
    color: #9ca3af;
}
.footer-links a:hover {
    color: #fff;
}
.copyright {
    color: #6b7280;
}

/* Hero Grid & Visuals */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.hero-content {
    text-align: left;
}
.hero-content .hero-actions {
    justify-content: flex-start;
}
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 16px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: float 6s ease-in-out infinite;
}
.floating-card .icon {
    font-size: 32px;
}
.floating-card .info {
    display: flex;
    flex-direction: column;
}
.floating-card .title {
    font-size: 14px;
    color: var(--text-muted);
}
.floating-card .value {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
}
.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}
.card-2 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}
.card-3 {
    top: 40%;
    right: 10%;
    animation-delay: 4s;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    z-index: -1;
    animation: pulse 8s ease-in-out infinite alternate;
}
.orb-1 {
    width: 250px;
    height: 250px;
    background: var(--primary);
    top: 10%;
    right: 20%;
}
.orb-2 {
    width: 200px;
    height: 200px;
    background: #fbbf24;
    bottom: 10%;
    left: 30%;
    animation-delay: -4s;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.2); opacity: 0.7; }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-content {
        text-align: center;
    }
    .hero-content .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .hero-visual {
        height: 300px;
    }
    .floating-card {
        padding: 12px 16px;
    }
    .hero h1 {
        font-size: 36px;
    }
    .hero-actions {
        flex-direction: column;
    }
    .grid-3, .grid-2 {
        grid-template-columns: 1fr;
    }
    .pricing-card.popular {
        transform: scale(1);
    }
    .btn-block {
        padding: 16px;
    }
    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}
