:root {
    /* Base Pastel Colors based on provided images */
    --color-bg: #F8F9FA;
    --color-surface: rgba(255, 255, 255, 0.7);
    --color-glass-border: rgba(255, 255, 255, 0.3);
    
    --color-text-main: #333333;
    --color-text-muted: #666666;
    
    /* Gradients / Accent colors */
    --color-purple: #CDB3D4;
    --color-pink: #E7B7C8;
    --color-orange: #FFB6B9;
    --color-dark-orange: #DF825F;
    --color-light-orange: #F8956F;
    
    --color-primary: var(--color-orange);
    --color-primary-hover: var(--color-light-orange);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
    --shadow-hover: 0 15px 35px 0 rgba(31, 38, 135, 0.1);
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Blobs for Visual Effect */
.background-blobs {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s infinite alternate;
}
.blob-1 {
    top: -10%; left: -10%;
    width: 50vw; height: 50vw;
    background: var(--color-pink);
    animation-delay: 0s;
}
.blob-2 {
    bottom: -20%; right: -10%;
    width: 60vw; height: 60vw;
    background: var(--color-orange);
    animation-delay: -5s;
}
.blob-3 {
    top: 20%; right: 20%;
    width: 40vw; height: 40vw;
    background: var(--color-purple);
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

/* Glassmorphism utility */
.glass {
    background: var(--color-surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-glass);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    color: var(--color-text-main);
}
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 20px;
    margin: 0 20px;
    z-index: 100;
    padding: 15px 0;
    border-radius: var(--radius-full);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
}
.brand-logo {
    height: 55px;
    width: auto; /* Maintain aspect ratio */
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}
.nav-links a {
    font-weight: 500;
    color: var(--color-text-muted);
}
.nav-links a:hover, .nav-links a.active {
    color: var(--color-primary);
}
.search-box {
    background: rgba(255,255,255,0.8);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--color-glass-border);
}
.search-box input {
    border: none;
    background: transparent;
    outline: none;
    font-family: inherit;
    width: 150px;
}

/* Main Content */
main {
    padding-top: 60px;
    padding-bottom: 80px;
}

.section {
    margin-bottom: 80px;
}
.section-title {
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
}
.section-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}
.btn-block {
    width: 100%;
}
.btn-primary {
    background: linear-gradient(135deg, var(--color-light-orange), var(--color-dark-orange));
    color: white;
    box-shadow: 0 4px 15px rgba(223, 130, 95, 0.4);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(223, 130, 95, 0.6);
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}
.btn-outline:hover {
    background: var(--color-primary);
    color: white;
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 40px;
    margin-bottom: 80px;
}
.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-text {
    padding-right: 20px;
}
.hero-title {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #222222, #A84C2C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}
.hero-actions {
    display: flex;
    gap: 20px;
}

/* Hero Stats Card */
.hero-stats-card {
    padding: 30px;
    background: rgba(255,255,255,0.85);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}
.hero-stats-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
}
.hero-stats-card .header-left {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-stats-card .status-ok {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
.hero-stats-card .status-ok .dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse 2s infinite;
}
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}
.stat-box {
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 20px 15px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform 0.3s ease;
}
.stat-box:hover {
    transform: translateY(-2px);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}
.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-main);
}
.text-green {
    color: #009688;
}
.hero-stats-card .card-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #aaa;
    border-top: 1px dashed rgba(0,0,0,0.1);
    padding-top: 15px;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(76, 175, 80, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
    margin-top: 40px;
}
.pricing-card {
    position: relative;
    padding: 40px 30px;
}
.pricing-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--color-primary);
}
.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}
.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
}
.plan-header { margin-bottom: 30px; text-align: center; }
.plan-header h3 { font-size: 1.2rem; color: var(--color-text-muted); }
.price { font-size: 3rem; font-weight: 700; margin-top: 10px; color: var(--color-text-main); }
.price span { font-size: 1.5rem; }
.price .period { font-size: 1rem; color: var(--color-text-muted); font-weight: 400; }
.plan-features {
    margin-top: 30px;
    list-style: none;
}
.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.9rem;
    color: var(--color-text-muted);
}
.plan-features li:last-child { border: none; }

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.article-card {
    display: flex;
    flex-direction: column;
    padding: 25px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.article-card h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--color-text-main);
    line-height: 1.4;
}
.article-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    flex-grow: 1; /* Pushes content to fill height */
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    cursor: pointer;
    padding: 20px 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}
.faq-answer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed rgba(0,0,0,0.1);
    color: var(--color-text-muted);
    line-height: 1.7;
    display: none;
}
.faq-item.active .faq-answer {
    display: block;
}
.faq-item.active .fa-chevron-down {
    transform: rotate(180deg);
}

/* Footer */
.footer {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    padding: 60px 0 20px;
    margin-top: 60px;
    border-top: 1px solid var(--color-glass-border);
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand h3 { margin-bottom: 15px; }
.footer-brand p { color: var(--color-text-muted); margin-bottom: 20px; }
/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 20px;
}
.review-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.review-stars { 
    color: #FFC107; 
    font-size: 1.1rem;
}
.review-card p {
    font-size: 1rem;
    color: var(--color-text-main);
    line-height: 1.6;
    font-style: italic;
    flex-grow: 1;
}
.review-author {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 600;
    text-align: right;
}

.footer-links h4, .footer-seo h4 { margin-bottom: 20px; }
.footer-links ul, .footer-seo ul { list-style: none; }
.footer-links li, .footer-seo li { margin-bottom: 10px; }
.footer-links a, .footer-seo a { color: var(--color-text-muted); font-size: 0.9rem; }
.footer-links a:hover, .footer-seo a:hover { color: var(--color-primary); }
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links, .search-box { display: none; }
    .hero-container { grid-template-columns: 1fr; gap: 40px; }
    .hero-title { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; }
    .stats-grid { grid-template-columns: 1fr; gap: 15px; }
    .articles-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }
    .pricing-card.popular { transform: none; }
    .pricing-card.popular:hover { transform: translateY(-5px); }
}
