:root {
    --primary: #0b3a24;
    --accent: #166a3c;
    --emerald: #1e7b4f;
    --gold: #c58a2c;
    --soft-gold: #fbf1d8;
    --muted: #4b5563;
    --card-border: #e3e8e0;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(180deg, #ebf8f1 0%, #e1f1e7 40%, #eef7f1 100%);
    background-image:
        radial-gradient(circle at 12% 8%, rgba(22, 106, 60, 0.12), transparent 42%),
        radial-gradient(circle at 85% -10%, rgba(14, 116, 68, 0.15), transparent 52%),
        radial-gradient(circle at 55% 80%, rgba(197, 138, 44, 0.18), transparent 60%);
    color: #0f1f16;
    line-height: 1.6;
    margin: 0;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

main {
    padding-bottom: 80px;
}

.page-shell {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
    position: relative;
    z-index: 1;
}

.page-shell::before,
.page-shell::after {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(35px);
    opacity: 0.35;
}

.page-shell::before {
    width: 360px;
    height: 360px;
    top: -90px;
    right: -140px;
    background: radial-gradient(circle, rgba(18, 97, 57, 0.65), transparent 65%);
}

.page-shell::after {
    width: 280px;
    height: 280px;
    bottom: 20px;
    left: -110px;
    background: radial-gradient(circle, rgba(197, 138, 44, 0.55), transparent 70%);
}

.hero-section {
    padding-top: 3rem;
}

.hero-card {
    background-image:
        linear-gradient(135deg, rgba(8, 35, 23, 0), rgba(23, 94, 57, 0)),
        url('https://sayajual.sgp1.cdn.digitaloceanspaces.com/sayajual-ai/hero-raya.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 28px;
    padding: 3rem 2.5rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.35;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

.ketupat {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #d7f3c8, #7ec86f);
    transform: rotate(45deg);
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.hero-section h1 {
    font-size: clamp(2.3rem, 6vw, 3.4rem);
    line-height: 1.2;
    text-shadow: 0 8px 22px rgba(5, 20, 12, 0.55);
}

.hero-subhead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 1.2rem;
}

.hero-copy {
    background: rgba(5, 22, 15, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 28px;
    padding: 1.8rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 25px 60px rgba(5, 18, 12, 0.45);
}

.pricing-line {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 1.8rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

@media (min-width: 576px) {
    .hero-cta {
        flex-direction: row;
    }
}

.hero-quick {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.85rem;
}

.hero-quick-card {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 18px;
    padding: 1rem 1.2rem;
}

.hero-quick-card small {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
}

.hero-quick-card strong {
    display: block;
    margin-top: 0.35rem;
    font-size: 1rem;
}

.section-card {
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 25px 70px rgba(15, 61, 46, 0.08);
}

.section-card.glass {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 35px 80px rgba(15, 61, 46, 0.12);
    backdrop-filter: blur(18px);
}

.section-card.alt {
    background: linear-gradient(140deg, #082116, #0f3d2e);
    border: none;
    color: #f3fbf6;
    box-shadow: 0 35px 90px rgba(4, 20, 13, 0.55);
}

.section-card.alt.glass {
    background: linear-gradient(140deg, rgba(5, 30, 20, 0.95), rgba(14, 58, 37, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.section-card.alt .section-subtext {
    color: rgba(243, 251, 246, 0.75);
}

.section-heading {
    margin-bottom: 1.5rem;
}

.section-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.section-eyebrow::before {
    content: "";
    width: 32px;
    height: 1px;
    background: rgba(214, 163, 84, 0.7);
}

.section-title {
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--soft-gold);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.section-subtext {
    color: var(--muted);
    margin: 0;
}

.icon-pill {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(15, 61, 46, 0.15);
    border-radius: 16px;
    background: rgba(4, 57, 35, 0.04);
    font-weight: 600;
}

.icon-pill .icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(20, 83, 46, 0.12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

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

.feature-card {
    border: 1px solid #edf0eb;
    border-radius: 18px;
    padding: 1.25rem;
    background: #fdfdfc;
}

.section-card.alt .feature-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
}

.section-card.alt .feature-icon {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(15, 61, 46, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

.comparison-table thead {
    background: #f0f7f3;
}

.comparison-table th,
.comparison-table td {
    border: 1px solid #e5e7eb;
    padding: 14px;
}

.comparison-table th {
    font-weight: 600;
}

.comparison-table td:last-child {
    font-weight: 600;
    color: var(--primary);
    background: rgba(13, 148, 78, 0.08);
}

.comparison-badge {
    background: var(--soft-gold);
    color: var(--primary);
    border-radius: 999px;
    padding: 0.1rem 0.55rem;
    margin-left: 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
}

.faq-item {
    border-top: 1px solid #ececec;
    padding: 1.5rem 0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.faq-item:first-child {
    border-top: none;
}

.faq-item h5 {
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.faq-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--soft-gold);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.faq-body {
    flex: 1;
}

.faq-body p {
    color: var(--muted);
}

.final-cta {
    background: linear-gradient(135deg, #0b3423, #125536);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: #f4fff6;
}

.final-cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.btn-primary-cta {
    background-color: var(--soft-gold);
    border: none;
    color: var(--primary);
    font-weight: 700;
    padding: 0.95rem 1.6rem;
    border-radius: 999px;
}

.btn-outline-secondary {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.95rem 1.6rem;
}

.btn-outline-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-primary-cta:hover {
    background-color: #f7e8c9;
    color: var(--primary);
}

.whatsapp-floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 999px;
    padding: 0.85rem 1.5rem;
    font-weight: 600;
    box-shadow: 0 15px 35px rgba(5, 32, 20, 0.25);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    z-index: 1000;
}

@media (max-width: 575px) {
    .section-card {
        padding: 1.8rem;
    }
    .hero-section {
        padding-top: 2rem;
    }
    .hero-card {
        padding: 2rem 1.5rem;
    }
    .hero-copy {
        padding: 1.4rem;
    }
}
