
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: Arial, Helvetica, sans-serif; background: #09090b; color: white; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
header { position: sticky; top: 0; z-index: 100; background: rgba(9,9,11,0.94); border-bottom: 1px solid rgba(255,255,255,0.1); }
nav { max-width: 1200px; margin: auto; padding: 16px 22px; display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.logo { font-size: 1.35rem; font-weight: 800; display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.logo-icon { background: rgba(139,92,246,0.25); color: #c4b5fd; width: 38px; height: 38px; border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.nav-links { display: flex; flex-wrap: wrap; gap: 14px; color: #d4d4d8; font-size: 0.9rem; }
.nav-links a:hover { color: white; }
.btn { display: inline-block; background: #8b5cf6; color: white; padding: 12px 22px; border-radius: 999px; font-weight: 700; border: none; cursor: pointer; }
.btn:hover { background: #a78bfa; }
.btn-dark { background: #09090b; }
.btn-outline { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.18); }
section { padding: 85px 24px; }
.container { max-width: 1200px; margin: auto; }
.hero { padding: 110px 24px; background: radial-gradient(circle at top left, rgba(139,92,246,0.35), transparent 35%), radial-gradient(circle at bottom right, rgba(236,72,153,0.2), transparent 30%); }
.hero-grid, .two-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.tagline { display: inline-block; margin-bottom: 24px; padding: 9px 16px; border-radius: 999px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); color: #ddd6fe; }
h1 { font-size: clamp(3rem, 7vw, 5.7rem); line-height: 1; letter-spacing: -0.05em; margin-bottom: 24px; }
h2 { font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.05; letter-spacing: -0.04em; margin-bottom: 22px; }
h3 { font-size: 1.4rem; margin-bottom: 10px; }
p { color: #d4d4d8; }
.section-label { color: #c4b5fd; text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.8rem; font-weight: 800; margin-bottom: 14px; }
.light { background: white; color: #09090b; }
.light p { color: #52525b; }
.light .section-label { color: #7c3aed; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 35px; }
.card { background: white; color: #09090b; border: 1px solid #e4e4e7; border-radius: 28px; padding: 28px; box-shadow: 0 8px 25px rgba(0,0,0,0.06); }
.card p { color: #52525b; }
.dark-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 28px; padding: 28px; }
.hero-card { border: 1px solid rgba(255,255,255,0.12); border-radius: 32px; background: rgba(255,255,255,0.06); padding: 24px; }
.hero-inner { min-height: 360px; border-radius: 24px; padding: 32px; background: linear-gradient(135deg, rgba(139,92,246,0.35), rgba(236,72,153,0.18), #18181b); display: flex; flex-direction: column; justify-content: space-between; }
.quote { font-size: 2rem; font-weight: 800; line-height: 1.2; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.stat { background: rgba(0,0,0,0.25); border-radius: 18px; padding: 18px 10px; text-align: center; }
.stat strong { display: block; font-size: 1.45rem; }
.stat span { font-size: 0.78rem; color: #d4d4d8; }
form { display: grid; gap: 14px; margin-top: 20px; }
input, select, textarea { width: 100%; padding: 13px 14px; border-radius: 14px; border: 1px solid #d4d4d8; font: inherit; }
textarea { min-height: 120px; resize: vertical; }
.note { font-size: 0.9rem; color: #71717a !important; margin-top: 12px; }
table { width: 100%; border-collapse: collapse; margin-top: 28px; overflow: hidden; border-radius: 20px; background: white; color: #09090b; }
th, td { padding: 16px; border-bottom: 1px solid #e4e4e7; text-align: left; }
th { background: #f5f3ff; color: #5b21b6; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 30px; }
.photo { min-height: 180px; border-radius: 24px; background: linear-gradient(135deg, rgba(139,92,246,0.35), rgba(236,72,153,0.18)); display: flex; align-items: end; padding: 18px; font-weight: 800; }
.price { font-size: 2.2rem; font-weight: 900; color: #7c3aed; margin: 12px 0; }
footer { text-align: center; padding: 30px 24px; color: #71717a; border-top: 1px solid rgba(255,255,255,0.1); }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero-grid, .two-grid, .card-grid, .gallery-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
}
