/* --- Global Styles & Variables --- */
:root {
    --bg-color: #ffffff;
    --bg-light-gray: #f3f4f6;
    --text-color: #374151;
    --heading-color: #111827;
    --primary-yellow: #FFD100;
    --primary-yellow-hover: #FBC100;
    --accent-blue: #00A9E0;
    --border-color: #e5e7eb;
    --strong-radius: 32px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

body {
    font-family: 'Manrope', sans-serif;
    line-height: 1.7;
    background-color: var(--bg-color);
    color: var(--text-color);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
h1, h2, h3, h4 { line-height: 1.2; color: var(--heading-color); font-weight: 800; }
h1 { font-size: 4rem; }
h2 { font-size: 2.8rem; text-align: center; }
.subtitle { max-width: 550px; margin-top: 1rem; font-size: 1.15rem; color: #6b7280; }
.section-subtitle { max-width: 700px; margin: 1rem auto 3.5rem auto; text-align: center; font-size: 1.1rem; }
.section-tag { display: block; text-align: center; font-weight: 700; color: var(--accent-blue); margin-bottom: 1rem; }
section { padding: 90px 0; }

/* --- Buttons & Links --- */
.btn { display: inline-block; padding: 14px 32px; border-radius: 50px; text-decoration: none; font-weight: 700; transition: all 0.2s; cursor: pointer; border: none; }
.btn-primary { background: var(--primary-yellow); color: var(--heading-color); }
.btn-primary:hover { background: var(--primary-yellow-hover); transform: translateY(-3px) scale(1.03); box-shadow: 0 10px 20px rgba(255, 209, 0, 0.4); }
.nav-btn { font-size: 0.9rem; padding: 10px 20px; }
.btn-large { padding: 18px 40px; font-size: 1.1rem; margin-top: 2.5rem; }
.cta-button { display: block; width: fit-content; margin-left: auto; margin-right: auto; }

/* --- Header --- */
.header { border-bottom: 1px solid var(--border-color); padding: 20px 0; background-color: rgba(255, 255, 255, 0.8); position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(10px); }
.main-nav { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 35px; }

/* --- Hero Section --- */
.hero { padding: 80px 0; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.hero-content { animation: fadeInUp 0.8s ease-out; }
.hero-image img { width: 100%; height: auto; animation: fadeInUp 0.8s ease-out 0.2s; animation-fill-mode: backwards; }

/* --- Marquee Section --- */
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee { padding: 20px 0; background-color: var(--accent-blue); color: white; overflow: hidden; white-space: nowrap; }
.marquee-track { display: flex; animation: scroll 30s linear infinite; }
.marquee span { font-size: 1.2rem; font-weight: 700; margin: 0 40px; }

/* --- Solution Section --- */
.solution { background-color: var(--bg-light-gray); }
.solution-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; margin-top: 4rem; }
.solution-card { background: var(--bg-color); padding: 30px; border-radius: var(--strong-radius); border: 1px solid var(--border-color); }
.solution-card h4 { margin-bottom: 0.5rem; }

/* --- How it Works Section --- */
.how-it-works { text-align: center; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 4rem; }
.step-number { display: grid; place-items: center; width: 60px; height: 60px; border-radius: 50%; background-color: var(--primary-yellow); color: var(--heading-color); font-size: 1.5rem; font-weight: 800; margin: 0 auto 1.5rem auto; }
.step-card h3 { font-size: 1.2rem; }

/* --- FAQ Section --- */
.faq { background-color: var(--bg-light-gray); }
.faq-accordion { max-width: 800px; margin: 3.5rem auto 0 auto; }
details { background: white; border: 1px solid var(--border-color); border-radius: var(--strong-radius); margin-bottom: 15px; padding: 25px 30px; }
summary { font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; color: var(--heading-color); }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-size: 1.5rem; color: var(--accent-blue); transition: transform 0.2s; }
details[open] summary::after { transform: rotate(45deg); }
details[open] p { padding-top: 15px; margin-top: 15px; border-top: 1px solid var(--border-color); }

/* --- Footer --- */
.footer { background-color: var(--heading-color); color: var(--bg-light-gray); padding: 30px 0; text-align: center; font-size: 0.9rem; }

/* --- Responsive --- */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .subtitle { margin: 1rem auto; }
    .hero-image { margin-top: 3rem; }
    .steps-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    :root { --strong-radius: 24px; }
}