/*
Theme Name: SEO Growth Agency
Theme URI: https://example.com/seo-growth-theme
Author: AI Studio
Author URI: https://ai.studio
Description: A lightweight, high-performance WordPress theme for SEO agencies and personal branding.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: seo-growth
*/

:root {
    --primary: #38ad63;
    --secondary: #344256;
    --bg-light: #f9fafb;
    --text-main: #1f2937;
    --text-muted: #6b7280;
    --white: #ffffff;
    --radius: 12px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --font-sans: 'Inter', -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-sans); line-height: 1.6; color: var(--text-main); background-color: var(--white); overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 80px 0; }
.btn { display: inline-block; padding: 12px 28px; border-radius: 50px; font-weight: 600; cursor: pointer; transition: 0.2s; border: none; font-size: 1rem; }
.btn-primary { background-color: var(--primary); color: var(--white); }
.btn-outline { background-color: transparent; border: 2px solid var(--secondary); color: var(--secondary); }

/* HERO */
.hero { padding: 100px 0; text-align: center; }
.hero-content { max-width: 900px; margin: 0 auto; }
.hero-content h1 { font-size: 4rem; margin-bottom: 1.5rem; font-weight: 800; color: var(--secondary); }
.hero-btns { display: flex; gap: 15px; justify-content: center; margin-bottom: 60px; }
.hero-insights { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; text-align: left; margin-top: 60px; padding-top: 60px; border-top: 1px solid #eee; }

/* BENTO GRID */
.value-prop { background-color: var(--bg-light); padding: 100px 0; }
.help-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 80px; }
.help-card { background: var(--white); padding: 40px; border-radius: 24px; box-shadow: var(--shadow); }
.bento-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: repeat(2, 200px); gap: 20px; }
.bento-item { background: var(--secondary); color: var(--white); padding: 30px; border-radius: 24px; display: flex; flex-direction: column; justify-content: flex-end; }
.bento-item.primary { background: var(--primary); grid-column: span 7; }
.bento-item.secondary { grid-column: span 5; }
.bento-item.tall { grid-column: span 4; }
.bento-item.wide { grid-column: span 8; }

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 30px; }
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
.team-card { text-align: center; background: var(--white); padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); }
.team-photo img { width: 120px; height: 120px; border-radius: 50%; margin-bottom: 20px; object-fit: cover; }
.team-designation { color: var(--primary); font-weight: 600; display: block; }

/* NAVBAR & FOOTER */
.site-header { position: sticky; top: 0; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); z-index: 1000; padding: 15px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.site-footer { background-color: #1a222c; color: #9ca3af; padding: 60px 0 30px; }