:root {
    --bg-white: #ffffff;
    --text-main: #111827;
    --text-muted: #6B7280;
    --text-lighter: #9CA3AF;
    --border-light: #e5e7eb;
    --card-bg: #f9fafb;
    
    --green-accent: #00D084;
    --green-light: #F0FDF4;
    --green-border: #BBF7D0;
    
    --blue-accent: #2563EB;
    --blue-light: #F0F9FF;
    --blue-border: #BAE6FD;

    --font-main: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Base styles (Navbar, Hero, Logos, Portfolio, Pricing remain untouched from previous step but included identically) */
.navbar { position: fixed; top: 20px; left: 50%; transform: translateX(-50%); width: 90%; max-width: 1200px; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border-radius: 100px; display: flex; justify-content: space-between; align-items: center; padding: 0.8rem 1.5rem 0.8rem 2rem; box-shadow: 0 4px 20px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.03); z-index: 100; }
.logo-text { font-weight: 800; font-size: 1.5rem; font-style: italic; letter-spacing: -0.05em; }
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a { text-decoration: none; color: var(--text-muted); font-size: 0.95rem; font-weight: 500; display: flex; align-items: center; gap: 0.4rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--text-main); }
.btn-dark-sm { background: #111; color: white; text-decoration: none; padding: 0.7rem 1.4rem; border-radius: 100px; font-weight: 500; font-size: 0.9rem; transition: background 0.2s; }
.hero-bg-wrapper { position: relative; padding-top: 150px; padding-bottom: 80px; background-color: #fafafa; background-image: linear-gradient(to right, rgba(0,0,0,0.03) 1px, transparent 1px), linear-gradient(to bottom, rgba(0,0,0,0.03) 1px, transparent 1px); background-size: 60px 60px; background-position: center top; }
.hero-bg-wrapper::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 100px; background: linear-gradient(to bottom, transparent, white); z-index: 1; }
.hero { text-align: center; max-width: 900px; margin: 0 auto; position: relative; z-index: 2; padding: 0 2rem; }
.hero-title { font-size: clamp(3rem, 6vw, 5rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; color: #1a1a1a; margin-bottom: 1.5rem; }
.highlight-wrapper { position: relative; display: inline-block; }
.green-underline { position: absolute; bottom: -5px; left: 0; width: 100%; height: 20px; z-index: -1; }
.hero-subtitle { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 3rem; line-height: 1.6; }
.hero-cta { display: flex; justify-content: center; margin-bottom: 6rem; }
.btn-shiny { background: linear-gradient(180deg, #2a2a2a 0%, #111 100%); color: white; text-decoration: none; padding: 1rem 2.2rem; border-radius: 100px; font-weight: 500; font-size: 1.05rem; display: flex; align-items: center; gap: 0.6rem; border: 1px solid #333; animation: pulse-glow 3s infinite ease-in-out; transition: all 0.3s ease; transform-origin: center; }
.btn-shiny:hover { transform: scale(1.05) translateY(-2px); animation-play-state: paused; box-shadow: 0 15px 40px rgba(0,0,0,0.4), inset 0 1px 1px rgba(255,255,255,0.3), 0 0 0 8px rgba(0,0,0,0.08); background: linear-gradient(180deg, #333 0%, #1a1a1a 100%); }
@keyframes pulse-glow {
    0% { box-shadow: 0 8px 25px rgba(0,0,0,0.2), inset 0 1px 1px rgba(255,255,255,0.1), 0 0 0 0 rgba(0,0,0,0.1); transform: translateY(0); }
    50% { box-shadow: 0 15px 35px rgba(0,0,0,0.35), inset 0 1px 1px rgba(255,255,255,0.2), 0 0 0 10px rgba(0,0,0,0.03); transform: translateY(-3px); }
    100% { box-shadow: 0 8px 25px rgba(0,0,0,0.2), inset 0 1px 1px rgba(255,255,255,0.1), 0 0 0 0 rgba(0,0,0,0.1); transform: translateY(0); }
}
@keyframes blink-animation {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
.blink-text { animation: blink-animation 1.0s infinite; }
.logos-section { max-width: 1200px; margin: 0 auto; padding-top: 1rem; position: relative; z-index: 2; overflow: hidden; }
.marquee-wrapper { width: 100%; display: flex; overflow: hidden; white-space: nowrap; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent); }
.marquee-content { display: flex; align-items: center; gap: 4rem; padding-left: 4rem; animation: scroll-marquee 25s linear infinite; }
@keyframes scroll-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
.logo-item { width: 32px; height: 32px; color: #a1a1aa; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: transform 0.2s, color 0.2s; opacity: 1; position: relative; }
.logo-item:hover { color: #111; transform: scale(1.15); }
.logo-icon { width: 32px; height: 32px; background-color: currentColor; -webkit-mask-size: contain; -webkit-mask-repeat: no-repeat; -webkit-mask-position: center; mask-size: contain; mask-repeat: no-repeat; mask-position: center; transition: background-color 0.2s; }
.logo-item:hover .logo-icon { background-color: #111; }
.tech-tooltip { position: fixed; background: #222; color: #fff; padding: 0.4rem 0.8rem; border-radius: 8px; font-size: 0.85rem; font-weight: 500; pointer-events: none; opacity: 0; transform: translate(-50%, 10px); transition: opacity 0.2s, transform 0.2s; z-index: 1000; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.tech-tooltip.show { opacity: 1; transform: translate(-50%, -10px); }

/* Sections Common */
.section-container { max-width: 1200px; margin: 0 auto; padding: 6rem 2rem; }
.section-header { display: flex; align-items: flex-end; gap: 1rem; margin-bottom: 3rem; }
.section-header h2 { font-size: 3.5rem; font-weight: 600; letter-spacing: -0.04em; line-height: 1; }
.section-header p { color: var(--text-muted); padding-bottom: 0.5rem; font-size: 1.1rem; }

/* Portfolio */
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; }
.portfolio-card { border: 1px solid var(--border-light); border-radius: 20px; overflow: hidden; background: white; box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
.card-image { width: 100%; aspect-ratio: 16/10; background: #f8f8f8; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; }
.card-content { padding: 2rem; }
.card-content h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }
.card-content p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 900px; margin: 0 auto; }
.pricing-card { padding: 3rem; border-radius: 30px; border: 1px solid; position: relative; background: white; }
.tier-basic { border-color: var(--green-border); background: linear-gradient(180deg, #FAFAFA 0%, var(--green-light) 100%); }
.tier-basic h3, .tier-popular h3 { font-size: 1.8rem; font-weight: 500; letter-spacing: -0.03em; margin-bottom: 0.5rem; }
.tier-popular { border-color: var(--blue-border); box-shadow: 0 20px 40px rgba(37, 99, 235, 0.05); }
.popular-badge { position: absolute; top: 2rem; right: 2rem; background: var(--blue-accent); color: white; font-size: 0.75rem; font-weight: 800; padding: 0.3rem 0.8rem; border-radius: 100px; letter-spacing: 0.05em; }
.tier-desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.5; margin-bottom: 2rem; min-height: 45px; }
.payment-type { display: block; font-size: 0.75rem; color: var(--text-lighter); font-weight: 600; letter-spacing: 0.05em; margin-bottom: 0.2rem; }
.price { font-size: 3rem; font-weight: 700; letter-spacing: -0.05em; margin-bottom: 2rem; line-height: 1; }
.features-list { list-style: none; margin-bottom: 3rem; }
.features-list li { font-size: 0.95rem; color: var(--text-main); margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.75rem; }
.features-list li span { font-weight: bold; font-size: 0.9rem; }
.green-ticks li span { color: var(--green-accent); }
.blue-ticks li span { color: var(--blue-accent); }
.btn-pricing { display: block; text-align: center; text-decoration: none; padding: 1rem; border-radius: 12px; font-weight: 600; font-size: 1rem; transition: opacity 0.2s; }
.btn-green { background: #059669; color: white; }
.btn-blue { background: var(--blue-accent); color: white; }

/* --- NEW SECTIONS --- */

/* Testimonials */
.center-title { text-align: center; font-size: 3rem; font-weight: 700; letter-spacing: -0.04em; margin-bottom: 3rem; }
.testimonial-card { max-width: 700px; margin: 0 auto; background: white; border: 1px solid var(--border-light); border-radius: 20px; padding: 3rem; text-align: center; box-shadow: 0 10px 40px rgba(0,0,0,0.02); }
.stars { display: flex; justify-content: center; gap: 0.2rem; margin-bottom: 1.5rem; }
.stars svg { width: 24px; height: 24px; }
.test-body { font-size: 1.15rem; color: var(--text-main); line-height: 1.7; margin-bottom: 3rem; }
.test-author { display: flex; align-items: center; justify-content: center; gap: 1rem; padding-top: 2rem; border-top: 1px solid var(--border-light); }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; background: #e5e7eb; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 1.2rem; }
.author-info { text-align: left; display: flex; flex-direction: column; }
.author-info strong { font-size: 1rem; color: var(--text-main); }
.author-info span { font-size: 0.9rem; color: var(--text-muted); }

/* Results Section - Bento Grid */
.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.bento-card { background: var(--card-bg); border-radius: 20px; border: 1px solid var(--border-light); padding: 2rem; position: relative; overflow: hidden; }

/* Grid Spanning */
.chart-card { grid-column: span 2; display: flex; flex-direction: column; justify-content: space-between; min-height: 250px; }
.bento-features { grid-column: span 2; padding: 2rem 0 2rem 1.5rem; }
.service-card { grid-column: span 2; display: flex; justify-content: space-between; align-items: center; }
.score-card { grid-column: span 2; display: flex; justify-content: space-between; align-items: center; }
.mini-card { grid-column: span 1; background: white; border: 1px solid var(--border-light); border-radius: 20px; padding: 2rem 1.5rem; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 1rem; box-shadow: 0 4px 20px rgba(0,0,0,0.02); min-height: 160px; }

/* Bento Specifics */
.chart-dots { display: flex; gap: 10px; margin-bottom: 1rem; }
.chart-dots .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green-accent); }
.chart-dots .offset { margin-top: 20px; opacity: 0.5; }
.chart-line { width: 100%; height: 150px; margin-top: auto; }

.bento-features h3 { font-size: 1.8rem; font-weight: 500; margin-bottom: 1.5rem; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.f-item strong { display: block; font-size: 1rem; margin-bottom: 0.2rem; }
.f-item span { display: block; font-size: 0.85rem; color: var(--text-muted); line-height: 1.4; }

.service-text strong, .score-text strong { display: block; font-size: 1.3rem; margin-bottom: 0.3rem; }
.service-text span, .score-text span { font-size: 0.9rem; color: var(--text-muted); }

.service-pills { position: relative; width: 150px; height: 100px; }
.pill { position: absolute; background: #222; color: white; font-size: 0.7rem; font-weight: bold; padding: 0.3rem 0.8rem; border-radius: 100px; }
.pill-copy { top: 10px; left: 0px; transform: rotate(-10deg); }
.pill-dev { top: 0px; left: 60px; transform: rotate(5deg); }
.pill-google { top: 40px; left: 5px; transform: rotate(0deg); }
.pill-host { top: 70px; left: 15px; transform: rotate(-5deg); }
.pill-support { top: 35px; left: 70px; transform: rotate(-10deg); }
.pill-strat { top: 65px; left: 80px; transform: rotate(5deg); }

.score-circles { position: relative; width: 100px; height: 100px; display: flex; align-items: center; justify-content: center; }
.circle-main { width: 80px; height: 80px; border-radius: 50%; border: 4px solid var(--green-accent); display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: bold; color: var(--green-accent); }
.circle-sub { position: absolute; width: 30px; height: 30px; border-radius: 50%; border: 1px solid #ccc; background: white; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; color: #666; }
.sub-97 { top: -5px; right: -5px; }
.sub-94 { bottom: -5px; right: 5px; }

.mini-card strong { font-size: 0.95rem; }
.time-badge { border: 1px solid var(--border-light); color: var(--green-accent); padding: 0.5rem 1rem; border-radius: 8px; font-weight: 500; font-size: 0.9rem; }
.gdpr-badge { background: white; border: 1px solid var(--border-light); padding: 0.5rem; border-radius: 8px; font-size: 0.7rem; position: relative; }
.gdpr-badge .check-icon { position: absolute; bottom: -8px; right: -8px; width: 20px; height: 20px; background: var(--green-accent); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; }

/* FAQ Section */
.faq-card { border: 1px solid var(--border-light); border-radius: 20px; background: white; overflow: hidden; }
.faq-card h3 { padding: 2rem 2rem 1rem 2rem; font-size: 1.5rem; font-weight: 500; }
.faq-list { padding: 0 2rem 2rem 2rem; }
.faq-item { padding: 1.5rem 0; border-bottom: 1px solid var(--border-light); cursor: pointer; }
.faq-item:last-child { border-bottom: none; }
.faq-question { display: flex; justify-content: space-between; align-items: center; font-weight: 500; }
.faq-question .arrow { color: var(--text-muted); transition: transform 0.3s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, margin-top 0.3s ease, opacity 0.3s ease; color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; opacity: 0; }
.faq-item.active .faq-answer { max-height: 300px; margin-top: 1rem; opacity: 1; }
.faq-item.active .arrow { transform: rotate(180deg); }

.faq-bottom { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--border-light); background: #fafafa; }
.faq-reach { padding: 2rem; border-right: 1px solid var(--border-light); }
.faq-custom { padding: 2rem; background: #111; color: white; }
.flex-align { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.icon-loc { color: var(--green-accent); font-size: 1.2rem; }
.icon-wrench { font-size: 1.2rem; }
.faq-reach p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }
.faq-custom p { color: #aaa; font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.5rem; }
.request-btn { color: white; font-weight: bold; font-size: 0.85rem; text-decoration: none; letter-spacing: 0.05em; }

/* Featured Products Section */
.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.product-card { padding: 3rem; border-radius: 30px; border: 1px solid var(--border-light); background: white; position: relative; box-shadow: 0 10px 40px rgba(0,0,0,0.02); display: flex; flex-direction: column; transition: all 0.3s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.06); }
.product-badge { position: absolute; top: 2rem; right: 2rem; background: #111; color: white; font-size: 0.75rem; font-weight: 800; padding: 0.3rem 0.8rem; border-radius: 100px; letter-spacing: 0.05em; }
.product-card h3 { font-size: 2rem; font-weight: 600; margin-bottom: 1rem; margin-top: 1rem; letter-spacing: -0.03em; }
.product-card p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.6; margin-bottom: 2.5rem; flex-grow: 1; }
.btn-product { display: inline-block; text-align: center; text-decoration: none; padding: 1rem 2rem; border-radius: 100px; font-weight: 600; font-size: 1rem; transition: opacity 0.2s, transform 0.2s; width: fit-content; }
.btn-product:hover { opacity: 0.9; transform: scale(1.02); }
.btn-dark { background: #111; color: white; }

/* About Section */
.about-card { border: 1px solid var(--border-light); border-radius: 20px; background: white; display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; padding: 2rem; }
.about-image { border-radius: 16px; overflow: hidden; position: relative; aspect-ratio: 4/5; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.img-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 2rem; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); color: white; }
.img-overlay .tag { display: inline-block; background: rgba(255,255,255,0.2); backdrop-filter: blur(5px); padding: 0.3rem 0.8rem; border-radius: 100px; font-size: 0.75rem; margin-bottom: 0.5rem; }
.img-overlay h2 { font-size: 2rem; margin-bottom: 0.2rem; }

.about-content { padding-top: 2rem; }
.about-content h3 { font-size: 2rem; font-weight: 500; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.about-content .desc { color: var(--text-muted); font-size: 1.1rem; line-height: 1.7; margin-bottom: 1.5rem; }

.about-stats { display: flex; gap: 2rem; margin-bottom: 3rem; margin-top: 2rem; }
.stat-box { background: var(--card-bg); border: 1px solid var(--border-light); border-radius: 12px; padding: 1.5rem; flex: 1; }
.stat-box h4 { font-size: 1.8rem; font-weight: 700; margin-bottom: 0.2rem; }
.stat-box p { color: var(--text-muted); font-size: 0.85rem; }

.about-pills { border-top: 1px solid var(--border-light); padding-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.about-pills span { border: 1px solid var(--border-light); color: var(--text-muted); padding: 0.5rem 1rem; border-radius: 100px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; }
.github-btn { display: inline-flex; align-items: center; gap: 0.5rem; background: #111; color: white; text-decoration: none; padding: 0.6rem 1.4rem; border-radius: 100px; font-size: 0.9rem; font-weight: 500; transition: transform 0.2s, background 0.2s; border: 1px solid #333; margin-left: auto; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.github-btn:hover { background: #333; transform: scale(1.05) translateY(-2px); }

/* New Complex Footer */
.complex-footer { background: #0f1115; color: white; padding: 4rem 2rem 2rem 2rem; border-radius: 30px; margin: 0 2rem 2rem 2rem; }
.footer-container { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.green-text { color: var(--green-accent); font-size: 0.9rem; font-weight: 500; display: block; margin-bottom: 1rem; }
.footer-left h2 { font-size: 4rem; font-weight: 600; line-height: 1.1; letter-spacing: -0.04em; margin-bottom: 1rem; }
.footer-left p { color: #9CA3AF; font-size: 1.1rem; line-height: 1.6; max-width: 400px; }

.btn-shiny-dark { display: inline-flex; align-items: center; gap: 0.5rem; background: linear-gradient(180deg, #2a2a2a 0%, #111 100%); color: white; text-decoration: none; padding: 1rem 2rem; border-radius: 100px; font-weight: 600; font-size: 0.95rem; border: 1px solid #333; box-shadow: 0 8px 25px rgba(0,0,0,0.5), inset 0 1px 1px rgba(255,255,255,0.1); transition: transform 0.2s; }
.btn-shiny-dark:hover { transform: translateY(-2px); }

.footer-right { display: flex; justify-content: flex-end; align-items: center; }
.availability-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 3rem; text-align: center; width: 100%; max-width: 400px; }
.availability-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.availability-card p { color: #9ca3af; font-size: 0.95rem; margin-bottom: 2rem; }
.avail-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(0, 208, 132, 0.1); color: var(--green-accent); padding: 0.5rem 1rem; border-radius: 100px; font-size: 0.85rem; }
.avail-badge .dot { width: 6px; height: 6px; background: var(--green-accent); border-radius: 50%; }

.footer-divider { width: 100%; height: 1px; background: rgba(255,255,255,0.1); margin-bottom: 2rem; }
.footer-mid p { font-size: 1.1rem; }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 6rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); color: #9ca3af; font-size: 0.9rem; }
.f-logo { font-weight: bold; font-style: italic; font-size: 1.1rem; color: white; margin-right: 0.5rem; }
.f-copyright a { color: #9ca3af; text-decoration: none; margin-left: 0.5rem; }
.f-links { display: flex; align-items: center; gap: 1.5rem; }
.f-links a { color: #9ca3af; text-decoration: none; transition: color 0.2s; }
.f-links a:hover { color: white; }
.f-links .divider { opacity: 0.5; }

/* =========================================
   RESPONSIVE DESIGN (TABLET & MOBILE)
   ========================================= */

@media (max-width: 1024px) {
    .nav-links { gap: 1rem; }
    .nav-links a { font-size: 0.85rem; }
    .section-container { padding: 5rem 1.5rem; }
}

@media (max-width: 900px) {
    .bento-grid, .portfolio-grid, .products-grid, .pricing-grid { grid-template-columns: 1fr; gap: 2rem; }
    .chart-card, .bento-features, .service-card, .score-card { grid-column: span 1; }
    .faq-bottom, .about-card, .footer-top, .footer-bottom { grid-template-columns: 1fr; flex-direction: column; gap: 2rem; align-items: flex-start; }
    .faq-reach { border-right: none; border-bottom: 1px solid var(--border-light); padding-bottom: 2rem; }
    .footer-right { justify-content: flex-start; }
    .complex-footer { margin: 0 1rem 1rem 1rem; padding: 3rem 1.5rem; }
    .footer-left h2 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .navbar { padding: 0.6rem 1rem; width: 95%; border-radius: 20px; }
    .logo-text { font-size: 1.2rem; }
    
    .section-header { flex-direction: column; align-items: flex-start; margin-bottom: 2rem; }
    .section-header h2 { font-size: 2.5rem; }
    .hero-title { font-size: 2.8rem; margin-top: 2rem; }
    .hero-subtitle { font-size: 1.05rem; margin-bottom: 2rem; }
    .center-title { font-size: 2.2rem; }
    
    .section-container { padding: 4rem 1rem; }
    .hero-bg-wrapper { padding-top: 120px; padding-bottom: 40px; }
    .card-content { padding: 1.5rem; }
    .pricing-card { padding: 2rem; }
    .testimonial-card { padding: 2rem 1.5rem; }
    
    .about-pills { flex-direction: column; align-items: flex-start; }
    .github-btn { margin-left: 0; margin-top: 1rem; width: 100%; justify-content: center; }
    .about-stats { flex-direction: column; gap: 1rem; }
    
    .f-links { flex-wrap: wrap; gap: 1rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .btn-shiny { padding: 0.8rem 1.5rem; font-size: 0.95rem; width: 100%; justify-content: center; }
    .pricing-grid { gap: 1.5rem; }
    .features-grid { grid-template-columns: 1fr; gap: 1rem; }
    .faq-card h3 { padding: 1.5rem; }
    .faq-list { padding: 0 1.5rem 1.5rem 1.5rem; }
    .logo-item { transform: scale(0.8); }
    .complex-footer { padding: 2rem 1rem; border-radius: 20px; }
}

/* --- LUSION EFFECTS & ANIMATIONS --- */
body, a, button, .faq-item, .logo-item, .btn-shiny, .btn-dark-sm, .social { cursor: none !important; }

.custom-cursor, .custom-cursor-follower { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; border-radius: 50%; }
.custom-cursor { width: 8px; height: 8px; background: var(--green-accent); transform: translate(-50%, -50%); transition: width 0.2s, height 0.2s, background 0.2s; }
.custom-cursor-follower { width: 40px; height: 40px; border: 1px solid rgba(0, 208, 132, 0.5); transform: translate(-50%, -50%); transition: width 0.2s, height 0.2s, border-color 0.2s, background 0.2s; }

.custom-cursor.hover { width: 0; height: 0; background: transparent; }
.custom-cursor-follower.hover { width: 60px; height: 60px; background: rgba(0, 208, 132, 0.05); border-color: var(--green-accent); backdrop-filter: blur(2px); }

.cursor-glow { position: fixed; top: 0; left: 0; width: 600px; height: 600px; background: radial-gradient(circle, rgba(0, 208, 132, 0.08) 0%, rgba(37, 99, 235, 0.04) 30%, transparent 60%); border-radius: 50%; transform: translate(-50%, -50%); pointer-events: none; z-index: 9998; mix-blend-mode: normal; filter: blur(30px); transition: width 0.3s, height 0.3s; }
.cursor-glow.hover { width: 800px; height: 800px; background: radial-gradient(circle, rgba(0, 208, 132, 0.12) 0%, rgba(37, 99, 235, 0.06) 40%, transparent 70%); }

.reveal-up { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-up.active { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
    .custom-cursor, .custom-cursor-follower, .cursor-glow { display: none !important; }
    body, a, button, .faq-item, .logo-item, .btn-shiny, .btn-dark-sm, .social { cursor: auto !important; }
}
