:root {
  --bg: #0d0d14; --surface: #15151f; --surface2: #1e1e2a; --surface3: #232330;
  --accent: #6effe8; --accent3: #a78bfa; --text: #f0f0f5; --muted: #9090a8;
  --border: rgba(110,255,232,0.1); --font-display: "Fraunces", serif; --font-body: "Outfit", sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html { overflow-x: hidden; }
body { background: linear-gradient(160deg, #0d0d14 0%, #111120 50%, #0d0d14 100%); background-attachment: fixed; color: var(--text); font-family: var(--font-body); font-weight: 400; line-height: 1.7; overflow-x: hidden; max-width: 100vw; }
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 0.4rem 5vw; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); background: rgba(13,13,20,0.9); backdrop-filter: blur(16px); }
.logo { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: var(--text); text-decoration: none; }
.logo-img { height: 58px; width: auto; display: block; }
.logo span { color: var(--accent); }
nav ul { list-style: none; display: flex; gap: 2.5rem; }
nav ul a { color: var(--muted); text-decoration: none; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; }
nav ul a:hover { color: var(--accent); }
.nav-cta { background: var(--accent) !important; color: var(--bg) !important; padding: 0.5rem 1.2rem; border-radius: 4px; font-weight: 500 !important; }
section { padding: 5rem 5vw; }
.section-label { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.6rem; }
.section-label::after { content: ""; display: block; flex: 1; max-width: 40px; height: 1px; background: var(--accent); opacity: 0.5; }
h1 { font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 1.2rem; }
h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 1.2rem; }
h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; margin-bottom: 0.4rem; }
.section-desc { color: var(--muted); max-width: 520px; font-size: 1rem; line-height: 1.8; }
.page-hero { padding: 10rem 5vw 5rem; border-bottom: 1px solid var(--border); position: relative; }
.hero-glow { position: fixed; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(110,255,232,0.1) 0%, transparent 70%); top: -150px; right: -150px; pointer-events: none; z-index: 0; }
.hero-glow2 { position: fixed; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(167,139,250,0.09) 0%, transparent 70%); top: 40%; left: 20%; pointer-events: none; z-index: 0; }
.page-hero-inner { max-width: 700px; position: relative; z-index: 1; }
.hero-sub { color: var(--muted); font-size: 1rem; max-width: 480px; line-height: 1.8; }
#reviews { border-top: 1px solid var(--border); }
.reviews-intro { margin-bottom: 3rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card { background: linear-gradient(145deg, var(--surface), var(--surface2)); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; display: flex; flex-direction: column; gap: 1.2rem; transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s; box-shadow: 0 4px 20px rgba(0,0,0,0.25); }
.review-card:hover { transform: translateY(-5px); border-color: rgba(110,255,232,0.2); box-shadow: 0 16px 40px rgba(0,0,0,0.35); }
.review-card.featured { border-color: rgba(110,255,232,0.35); background: linear-gradient(145deg, #161622, rgba(110,255,232,0.05)); grid-column: span 1; }
.review-stars { color: var(--accent); font-size: 1rem; letter-spacing: 0.1em; }
.review-text { color: var(--muted); font-size: 0.92rem; line-height: 1.8; font-style: italic; flex: 1; }
.review-author { display: flex; align-items: center; gap: 0.9rem; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent3)); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; color: var(--bg); flex-shrink: 0; }
.review-name { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.review-role { font-size: 0.78rem; color: var(--muted); }
.review-cta { margin-top: 3.5rem; background: linear-gradient(145deg, var(--surface), var(--surface2)); border: 1px solid rgba(110,255,232,0.2); border-radius: 16px; padding: 2.5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.review-cta p { color: var(--muted); font-size: 0.9rem; max-width: 480px; margin-top: 0.4rem; }
.btn-primary { background: var(--accent); color: var(--bg); padding: 0.85rem 2rem; border-radius: 6px; font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; display: inline-flex; align-items: center; gap: 0.5rem; white-space: nowrap; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(110,255,232,0.25); }
footer { border-top: 1px solid var(--border); background: var(--surface); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding: 4rem 5vw; border-bottom: 1px solid var(--border); }
.footer-logo { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--text); margin-bottom: 0.9rem; }
.footer-logo span { color: var(--accent); }
.footer-tagline { color: var(--muted); font-size: 0.88rem; line-height: 1.75; max-width: 260px; margin-bottom: 0.9rem; }
.footer-contact-line { color: var(--muted); font-size: 0.85rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text); margin-bottom: 0.3rem; }
.footer-col a { color: var(--muted); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 0.4rem 5vw; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom span { color: var(--muted); font-size: 0.78rem; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr 1fr; } .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; } .footer-brand { grid-column: 1 / -1; } nav ul { display: none; } }
@media (max-width: 600px) { section { padding: 3rem 5vw; } .page-hero { padding: 8rem 5vw 3rem; } .reviews-grid { grid-template-columns: 1fr; } .review-cta { flex-direction: column; align-items: flex-start; } .footer-top { grid-template-columns: 1fr; padding: 2.5rem 5vw; } .footer-bottom { flex-direction: column; align-items: flex-start; } }

.hamburger { display: none; }
@media (max-width: 900px) {
  nav ul { display: none; }
  .hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 0.5rem; background: none; border: none; z-index: 300; position: relative; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-nav-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(13,13,20,0.98); z-index: 250; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; padding: 2rem; }
  .mobile-nav-overlay.open { display: flex; }
  .mobile-nav-overlay a { font-size: 1.3rem; color: var(--text); text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; }
  .mobile-nav-overlay a:hover { color: var(--accent); }
  .mobile-nav-overlay .nav-cta { background: var(--accent) !important; color: var(--bg) !important; padding: 0.75rem 2.5rem; border-radius: 6px; }
  .mobile-nav-overlay .nav-phone { color: var(--accent) !important; border: 1px solid rgba(110,255,232,0.3); padding: 0.5rem 1.2rem; border-radius: 4px; font-size: 1rem !important; }
  .logo-img { height: 44px; }
}