:root {
  --bg: #07111f;
  --bg-soft: rgba(255,255,255,0.06);
  --card: rgba(255,255,255,0.07);
  --card-border: rgba(255,255,255,0.14);
  --text: #f5f7fb;
  --muted: #a7b3c6;
  --primary: #42d3ff;
  --secondary: #7c5cff;
  --accent: #ff4ecb;
  --success: #6effc3;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.34);
  --radius: 28px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background:
    radial-gradient(circle at top, rgba(66,211,255,0.08), transparent 30%),
    linear-gradient(180deg, #07111f 0%, #071827 100%);
  color: var(--text);
  overflow-x: hidden;
}

.mouse-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  background:
    radial-gradient(circle, rgba(66,211,255,0.18) 0%, rgba(124,92,255,0.12) 38%, rgba(255,78,203,0.08) 58%, rgba(255,255,255,0) 72%);
  filter: blur(10px);
  mix-blend-mode: screen;
  transition: opacity 0.25s ease;
}

body.mouse-active .mouse-glow {
  opacity: 1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}
.narrow { max-width: 860px; }
.section { padding: 96px 0; position: relative; }
.page-main .section:first-child { padding-top: 72px; }
.section-dark { background: rgba(255,255,255,0.02); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(7, 17, 31, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 20px;
}

.brand { display: flex; flex-direction: column; }
.brand-title { font-size: 1.6rem; font-weight: 900; letter-spacing: -0.04em; }
.brand-subtitle { font-size: 0.73rem; text-transform: uppercase; letter-spacing: 0.22em; color: #86efff; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.site-nav a {
  color: var(--muted);
  font-weight: 500;
  transition: 0.25s ease;
}
.site-nav a:hover,
.site-nav a.active { color: var(--text); }
.mobile-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #4f7cff);
  color: #06111d;
  box-shadow: 0 16px 30px rgba(66, 211, 255, 0.25);
}
.btn-secondary {
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
  color: var(--text);
}
.btn-outline {
  border: 1px solid rgba(66, 211, 255, 0.35);
  background: rgba(66, 211, 255, 0.08);
  color: #baf7ff;
}
.full-btn { width: 100%; margin-top: 20px; }

.hero-grid,
.split-content,
.contact-layout,
.about-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: center;
}

.hero h1,
.page-hero h1 { font-size: clamp(2.8rem, 6vw, 5rem); line-height: 1.02; letter-spacing: -0.06em; margin: 18px 0 18px; }
.hero h2, .page-hero h2, .section-heading h2, .split-content h2, .cta-box h2 { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.08; letter-spacing: -0.05em; margin: 16px 0; }
.lead, .section-heading p, .split-content p, .cta-box p, .about-box p, .info-card p, .price-card p { color: var(--muted); font-size: 1.08rem; line-height: 1.85; }
.eyebrow {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(66,211,255,0.25);
  background: rgba(255,255,255,0.04);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #8feeff;
}
.gradient-text {
  background: linear-gradient(90deg, #8feeff, #6a83ff 50%, #ff5bd2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-actions, .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.cta-primary-btn {
  white-space: nowrap;
  min-width: 150px;
}

.glass-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel { padding: 24px; position: relative; }
.window-dots { display: flex; gap: 8px; margin-bottom: 24px; }
.window-dots span { width: 12px; height: 12px; border-radius: 50%; background: #ff7c8c; }
.window-dots span:nth-child(2) { background: #ffd166; }
.window-dots span:nth-child(3) { background: #5cf2a2; }
.hero-service-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(5, 12, 22, 0.6);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 18px;
}
.hero-service-card p:first-child { color: #8da2bd; font-size: 0.9rem; margin: 0; }
.hero-service-card h3 { font-size: 1.8rem; margin: 12px 0; }
.service-mini-grid,
.cards-3,
.pricing-grid,
.stats-grid,
.form-grid {
  display: grid;
  gap: 20px;
}
.service-mini-grid { grid-template-columns: repeat(2, 1fr); }
.service-mini {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 20px;
  color: #dbe7f8;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 700;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}
.service-mini::after {
  content: "↗";
  font-size: 1.1rem;
  color: #8feeff;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.service-mini:hover {
  transform: translateY(-4px);
  border-color: rgba(66,211,255,0.32);
  background: linear-gradient(135deg, rgba(66,211,255,0.12), rgba(124,92,255,0.12));
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(10, 22, 38, 0.28);
}
.service-mini:hover::after {
  opacity: 1;
  transform: translateX(0);
}
.stats-grid { grid-template-columns: repeat(3, 1fr); margin-top: 34px; }
.stat-card { padding: 22px; }
.stat-card strong { display: block; font-size: 1.55rem; margin-bottom: 8px; }
.stat-card span { color: var(--muted); }

.section-heading { max-width: 760px; margin-bottom: 40px; }
.left-align { margin-left: 0; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.info-card, .feature-item, .about-box, .contact-box, .price-card { padding: 30px; }
.info-card h3, .price-card h3, .about-box h2, .contact-box h2 { font-size: 1.5rem; margin-top: 0; margin-bottom: 14px; }
.feature-list { display: grid; gap: 18px; }
.feature-item { font-size: 1.05rem; font-weight: 600; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.faq-item {
  padding: 26px;
}
.faq-item h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.2rem;
}
.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}
.link-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.link-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(66,211,255,0.2);
  background: rgba(255,255,255,0.04);
  color: #d8e7fa;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.link-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(66,211,255,0.45);
  color: #ffffff;
}

.pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card .price { font-size: 2.4rem; font-weight: 900; margin: 18px 0; }
.price-card ul, .check-list { list-style: none; padding: 0; margin: 22px 0 0; }
.price-card li, .check-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 14px;
  color: #dce6f6;
}
.price-card li::before, .check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}
.price-card .full-btn {
  margin-top: auto;
}
.featured {
  border-color: rgba(66,211,255,0.45);
  box-shadow: 0 30px 80px rgba(66,211,255,0.16);
  transform: translateY(-8px);
}
.badge {
  display: inline-flex;
  margin-bottom: 16px;
  border-radius: 999px;
  padding: 8px 12px;
  background: linear-gradient(135deg, var(--primary), #6b73ff);
  color: #05101d;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cta-box {
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.contact-item { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.contact-item:last-child { border-bottom: 0; }
.contact-item span { display: block; font-size: 0.88rem; color: var(--muted); margin-bottom: 8px; }
.contact-item strong { font-size: 1.05rem; line-height: 1.6; }
.bank-transfer-box p { margin-bottom: 0; }
.bank-steps {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.bank-step {
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}
.bank-step strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}
.bank-step span {
  color: var(--muted);
  line-height: 1.7;
}
.bank-notes { margin-top: 24px; }
.bank-account-card {
  margin-top: 28px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(66,211,255,0.18);
  background: linear-gradient(180deg, rgba(66,211,255,0.08), rgba(255,255,255,0.03));
}
.bank-account-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.bank-account-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.bank-account-item span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}
.bank-account-item strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.7;
  word-break: break-word;
}
.studio-bank-card h2 {
  margin-top: 16px;
  margin-bottom: 8px;
}
.contact-form label { display: block; }
.contact-form span { display: block; margin-bottom: 10px; color: #dfe8f7; font-weight: 600; }
.form-grid { grid-template-columns: repeat(2, 1fr); }
.form-grid .full { grid-column: 1 / -1; }
input, textarea, select {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #8feeff 50%),
    linear-gradient(135deg, #8feeff 50%, transparent 50%);
  background-position:
    calc(100% - 24px) calc(50% - 3px),
    calc(100% - 18px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 52px;
}
select option {
  background: #0c1727;
  color: var(--text);
}
textarea { min-height: 160px; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: rgba(66,211,255,0.55); background: rgba(255,255,255,0.07); }
.form-message { margin-top: 14px; font-weight: 600; }
.form-message.success { color: #8bffd9; }
.form-message.error { color: #ff9fb2; }

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0 40px;
  background: rgba(0,0,0,0.12);
}
.footer-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}
.social-box {
  max-width: 900px;
  margin: 0 auto;
}
.social-links,
.footer-socials {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.social-links {
  margin-top: 26px;
}
.footer-socials {
  align-items: center;
}
.footer-social-btn {
  padding: 10px 18px;
  font-size: 0.92rem;
}
.footer-wrap p, .footer-links a { color: var(--muted); }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; width: 100%; }
.footer-links a:hover { color: var(--text); }

.bg-orb {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.42;
}
.orb-1 { width: 320px; height: 320px; top: -50px; left: -90px; background: rgba(66,211,255,0.34); }
.orb-2 { width: 360px; height: 360px; top: 180px; right: -140px; background: rgba(124,92,255,0.28); }
.orb-3 { width: 300px; height: 300px; bottom: -80px; left: 18%; background: rgba(255,78,203,0.2); }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #11b85a);
  color: #06111d;
  font-weight: 800;
  box-shadow: 0 20px 45px rgba(17, 184, 90, 0.35);
  border: 1px solid rgba(255,255,255,0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(17, 184, 90, 0.42);
  filter: brightness(1.04);
}
.whatsapp-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.18);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
}
.whatsapp-text {
  letter-spacing: 0.01em;
}

@media (max-width: 991px) {
  .hero-grid,
  .split-content,
  .contact-layout,
  .about-layout,
  .pricing-grid,
  .cards-3,
  .stats-grid,
  .faq-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .cta-box {
    display: grid;
  }

  .featured { transform: none; }
  .nav-cta { display: none; }
  .mobile-toggle {
    display: inline-flex;
    background: rgba(255,255,255,0.07);
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.1);
    width: 48px;
    height: 48px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
  }

  .site-nav {
    position: absolute;
    top: 84px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    background: rgba(7, 17, 31, 0.98);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
}

@media (max-width: 640px) {
  .section { padding: 74px 0; }
  .hero h1, .page-hero h1 { font-size: 2.6rem; }
  .hero-actions, .cta-actions { flex-direction: column; }
  .btn { width: 100%; }
  .service-mini-grid, .form-grid { grid-template-columns: 1fr; }
  .container { width: min(var(--container), calc(100% - 1.25rem)); }
  .social-links,
  .footer-socials { flex-direction: column; }
  .footer-links { align-items: center; }
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 12px;
  }
  .whatsapp-text {
    display: none;
  }
}

@media (pointer: coarse) {
  .mouse-glow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .mouse-glow { display: none; }
}
