:root {
  --primary: #1A73E8;
  --secondary: #34A853;
  --neutral: #333333;
  --bg: #F8F9FA;
}

* { box-sizing: border-box; }
body { margin: 0; font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color: var(--neutral); background: #fff; }
.container { width: min(1100px, 92%); margin: 0 auto; }

header { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
header .logo { display:flex; align-items:center; gap: 10px; font-weight: 700; color: var(--primary); font-size: 20px; }
header .logo img { width: 36px; height: 36px; }
header nav a { margin-left: 16px; text-decoration: none; color: var(--neutral); }
header nav a.btn { padding: 8px 14px; border:1px solid var(--primary); border-radius: 12px; color: var(--primary); }
header nav a.btn:hover { background: var(--primary); color: #fff; }

.hero {  padding: 60px 0; position: relative; overflow: hidden; }
.hero .hero-inner { display:grid; grid-template-columns: 1.1fr 0.9fr; align-items:center; gap: 20px; }
.hero h1 { font-size: clamp(34px, 4vw, 48px); margin: 0 0 8px; color: var(--neutral); }
.hero p { font-size: 18px; margin: 0 0 18px; color: #444; }
.hero .hero-logo { width: 100%; max-width: 540px; filter: drop-shadow(0 10px 30px rgba(0,0,0,0.08)); }

.section { padding: 48px 0; }
.section h2 { font-size: 28px; margin: 0 0 22px; color: var(--neutral); }

.cards { display:grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: #fff; border: 1px solid #eee; border-radius: 16px; padding: 20px; }
.card .icon { font-size: 28px; }
.card h3 { margin: 10px 0 6px; }
.card p { margin: 0; color: #555; }

.gallery { display:grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery figure { margin: 0; border: 1px solid #eee; border-radius: 12px; overflow: hidden; background:#fff; }
.gallery img { width: 100%; display: block; }
.gallery figcaption { padding: 10px; font-size: 14px; color:#555; }

.plans { display:grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.plan { border:1px solid #eee; border-radius: 16px; padding: 18px; background:#fff; }
.plan.featured { border-color: var(--primary); box-shadow: 0 10px 26px rgba(26,115,232,0.12); transform: translateY(-2px); }
.plan h3 { margin: 0 0 6px; }
.plan .price { font-weight: 700; font-size: 24px; color: var(--primary); }
.plan ul { padding-left: 18px; color:#555; }
.plan .btn { margin-top: 8px; display:inline-block; }

.grid { display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }
input, textarea { width:100%; padding: 10px 12px; border-radius: 10px; border:1px solid #ddd; font: inherit; }
label { display:block; margin-bottom:6px; font-size: 14px; color:#555; }

.btn { display:inline-block; padding: 10px 16px; border-radius: 12px; text-decoration:none; border:1px solid var(--neutral); color: var(--neutral); }
.btn-primary { background: var(--primary); color:#fff; border-color: var(--primary); }
.btn-outline { color: var(--primary); border-color: var(--primary); }
.btn:hover { opacity: 0.92; }

.footer { background:#fafafa; padding: 18px 0; margin-top: 20px; }
.muted { color:#666; font-size: 14px; }

@media (max-width: 900px) {
  .hero .hero-inner { grid-template-columns: 1fr; }
  .cards, .gallery, .plans, .grid { grid-template-columns: 1fr; }
}
/* === GG THEME OVERRIDES === */
:root{
  --gg-primary: #5B8CFF;
  --gg-secondary: #22D3EE;
  --gg-dark: #0B1220;
  --gg-light: #F3F4F6;
  --gg-accent: #8B5CF6;
}

html, body {
  background-color: var(--gg-dark) !important;
  color: #E5E7EB !important;
}

a, a:visited { color: var(--gg-secondary) !important; }
a:hover { color: var(--gg-primary) !important; }

header, .navbar, .nav, .site-header {
  background: linear-gradient(90deg, var(--gg-dark), rgba(11,18,32,0.85)) !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  backdrop-filter: blur(10px);
}

.hero, .masthead, .header-hero {
  
  color: #F8FAFC !important;
}

.btn-primary, .button.primary, .btn.btn-primary {
  background: linear-gradient(135deg, var(--gg-primary), var(--gg-accent)) !important;
  border: none !important;
  color: white !important;
}

.btn, .button, button {
  border-radius: 12px !important;
}

.card, .feature, .pricing, .panel, .box {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 16px !important;
  color: #E5E7EB !important;
}

.section-title, h1, h2, h3 {
  color: #EAF2FF !important;
}

footer {
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  color: #A5B4FC !important;
  background: #0E1629 !important;
}
