/* AI Site Builder — Generated Theme */
:root {
  --primary: #1a1a2e;
  --secondary: #16213e;
  --accent: #e94560;
  --text: #1a1a2e;
  --bg: #FFFFFF;
  --font-heading: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --glow: 0 0 40px rgba(233,69,96,0.2);
  --card-bg: #ffffff;
  --card-border: rgba(0,0,0,0.05);
  --section-alt: #f8fafc;
  --gradient-1: #1a1a2e;
  --gradient-2: #16213e;
  --radius: 16px;
}

/* Reset & Base */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.7; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
h1,h2,h3,h4,h5 { font-family: var(--font-heading); line-height: 1.2; letter-spacing: -0.025em; color: var(--secondary); }
a { color: var(--primary); text-decoration: none; transition: all 0.2s ease; }
img { max-width: 100%; height: auto; display: block; }

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

/* ========== NAVBAR ========== */
.navbar {
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  padding: 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
  position: sticky; top: 0; z-index: 1000;
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; height: 64px; }
.nav-brand { font-family: var(--font-heading); font-size: 22px; font-weight: 800; color: var(--secondary); letter-spacing: -0.04em; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { color: #64748b; font-size: 14px; font-weight: 500; letter-spacing: 0.01em; transition: color 0.2s; }
.nav-links a:hover { color: var(--secondary); }
.btn-nav {
  background: var(--secondary); color: white !important;
  padding: 10px 22px; border-radius: 10px; font-weight: 600; font-size: 14px;
  transition: all 0.25s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.nav-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--secondary); padding: 8px; }

/* ========== HERO ========== */
.hero-section {
  background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
  color: white;
  padding: 140px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 80%, rgba(233,69,96,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.hero-title {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: white;
}
.hero-tagline {
  font-size: clamp(16px, 2.5vw, 21px);
  opacity: 0.88;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.65;
  font-weight: 400;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px;
  background: var(--accent); color: white;
  border-radius: 12px; font-weight: 600; font-size: 15px;
  border: none; cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(233,69,96,0.25);
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(233,69,96,0.3); }
.btn:active { transform: translateY(0); }
.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: white;
  box-shadow: none;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); box-shadow: none; }

/* ========== SECTIONS ========== */
.section { padding: 100px 0; }
.section:nth-child(even) { background: var(--section-alt); }
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.section-subtitle {
  font-size: 17px;
  color: #94a3b8;
  margin-bottom: 56px;
  line-height: 1.6;
}

/* ========== GRID ========== */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* ========== CARDS ========== */
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--card-border);
  transition: all 0.3s ease;
  position: relative;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  border-color: rgba(233,69,96,0.15);
}

/* ========== STARS ========== */
.stars { color: #f59e0b; font-size: 16px; letter-spacing: 3px; }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-title { font-size: 28px; }
  .section-subtitle { margin-bottom: 36px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .card { padding: 24px; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column; padding: 16px 24px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    gap: 4px; border-top: 1px solid rgba(0,0,0,0.05);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 0; font-size: 15px; color: var(--secondary); }
  .nav-inner { position: relative; }
  .hero-section { padding: 80px 0 64px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 300px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 32px; }
}