*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #000; --fg: #fff; --card: #0d0d0d; --secondary: #1f1f1f;
  --muted: #a6a6a6; --border: #333; --divider: #404040;
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--fg); font-family: 'Inter', sans-serif; font-weight: 300; -webkit-font-smoothing: antialiased; }
h1, h2, h3 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.05em; font-weight: 400; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1024px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
@media(min-width:768px) { .section { padding: 128px 0; } }
@media(min-width:1024px) { .section { padding: 160px 0; } }

.divider-short { width: 64px; height: 1px; background: var(--fg); margin-bottom: 32px; }
.divider-short.center { margin-left: auto; margin-right: auto; }
.body-large { font-size: 1.125rem; line-height: 1.75; color: var(--muted); }
@media(min-width:768px) { .body-large { font-size: 1.25rem; } }
.body-regular { font-size: 1rem; line-height: 1.75; color: var(--muted); }
.heading-section { font-size: 2.25rem; }
@media(min-width:768px) { .heading-section { font-size: 3rem; } }
@media(min-width:1024px) { .heading-section { font-size: 3.75rem; } }
.heading-card { font-size: 1.5rem; }
@media(min-width:768px) { .heading-card { font-size: 1.875rem; } }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; padding: 24px; transition: background 0.5s; }
nav.scrolled { background: rgba(0,0,0,0.95); backdrop-filter: blur(4px); }
nav ul { list-style: none; display: flex; justify-content: flex-end; gap: 40px; max-width: 1024px; margin: 0 auto; }
nav a { font-size: 0.875rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.8); transition: color 0.3s; position: relative; }
nav a:hover { color: #fff; }
nav a::after { content:''; position: absolute; bottom: -2px; left: 0; width: 100%; height: 1px; background: #fff; transform: scaleX(0); transform-origin: right; transition: transform 0.3s; }
nav a:hover::after { transform: scaleX(1); transform-origin: left; }
@media(max-width:767px) { nav ul { gap: 20px; } nav a { font-size: 0.75rem; } }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.4), rgba(0,0,0,1)); }
.hero-content { position: relative; z-index: 10; padding: 0 24px; }
.hero h1 { font-size: 3.75rem; letter-spacing: 0.1em; margin-bottom: 16px; }
@media(min-width:768px) { .hero h1 { font-size: 6rem; } }
@media(min-width:1024px) { .hero h1 { font-size: 8rem; } }
.hero .tagline { font-size: 1.125rem; letter-spacing: 0.2em; color: rgba(255,255,255,0.8); margin-bottom: 24px; }
@media(min-width:768px) { .hero .tagline { font-size: 1.25rem; } }
.hero .desc { max-width: 640px; margin: 0 auto 40px; }
.hero-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 16px 40px; font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; transition: all 0.3s; cursor: pointer; border: none; }
.btn-primary { background: #fff; color: #000; }
.btn-primary:hover { background: rgba(255,255,255,0.9); }
.btn-outline { background: transparent; color: #fff; border: 1px solid #fff; font-weight: 500; }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-lg { padding: 14px 32px; }
.btn-full { width: 100%; }
@media(min-width:640px) { .btn-full { width: auto; } }

/* SCROLL INDICATOR */
.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); }
.scroll-line { width: 1px; height: 64px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5), transparent); animation: scrollBounce 1.5s infinite; }
@keyframes scrollBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(10px); } }

/* SERVICES */
.bg-secondary { background: var(--secondary); }
.services-grid { display: grid; gap: 64px; }
@media(min-width:768px) { .services-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.service-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.service-header svg { opacity: 0.7; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.service-list li { display: flex; align-items: center; gap: 12px; }
.dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.5); flex-shrink: 0; }

/* PRICING */
.pricing-grid { display: grid; gap: 24px; margin-bottom: 48px; }
@media(min-width:768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.pricing-card { border: 1px solid var(--border); background: var(--card); padding: 32px; transition: border-color 0.5s; }
.pricing-card:hover { border-color: rgba(255,255,255,0.3); }
.pricing-card h3 { margin-bottom: 8px; }
.pricing-card .price { font-size: 1.25rem; color: var(--muted); margin-bottom: 24px; }
.pricing-card ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-card li { font-size: 0.875rem; display: flex; align-items: flex-start; gap: 8px; }
.pricing-card .ideal { padding-top: 24px; border-top: 1px solid var(--border); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; background: none; border: none; color: var(--fg); font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 500; letter-spacing: 0.025em; text-align: left; padding: 16px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: color 0.3s; }
.faq-question:hover { color: var(--muted); }
.faq-question svg { transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 16px; }
.faq-answer p { color: var(--muted); line-height: 1.75; }

/* CONTACT */
.contact-form { max-width: 576px; margin: 0 auto; }
.contact-form input, .contact-form textarea { width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--border); padding: 16px 0; color: var(--fg); font-family: 'Inter', sans-serif; font-weight: 300; font-size: 1rem; outline: none; transition: border-color 0.3s; resize: none; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--muted); }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--fg); }
.contact-form .fields { display: flex; flex-direction: column; gap: 24px; margin-bottom: 24px; }
.instagram { display: inline-flex; align-items: center; gap: 12px; color: var(--muted); transition: color 0.3s; margin-top: 64px; }
.instagram:hover { color: var(--fg); }
.instagram span { font-size: 0.875rem; letter-spacing: 0.1em; text-transform: uppercase; }

#edit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.overlay-content {
  background: #111;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
}

.overlay-content h3 {
  margin-bottom: 10px;
}

.overlay-content .btn {
  margin-top: 20px;
}

/* FOOTER */
footer { padding: 64px 0; border-top: 1px solid var(--border); text-align: center; }
footer .tagline { font-size: 0.875rem; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 24px; }
footer .copy { font-size: 0.75rem; color: rgba(166,166,166,0.6); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.animate-in { animation: fadeUp 0.8s ease-out forwards; }