/* =============================================================================
   Global theme — edit CSS variables to rebrand quickly
   ============================================================================= */
:root {
  --bg-deep: #0a0b10;
  --bg-elevated: #12141c;
  --bg-card: #161a24;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --text-primary: #f4f6ff;
  --text-muted: #9aa3b8;
  --accent: #00d4ff;
  --accent-2: #a855f7;
  --accent-glow: rgba(0, 212, 255, 0.35);
  --radius: 14px;
  --radius-sm: 10px;
  --font-sans: "Inter", system-ui, sans-serif;
  --font-display: "Poppins", system-ui, sans-serif;
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.45);
  --transition: 0.25s ease;
  --max-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background: radial-gradient(1200px 600px at 10% -10%, rgba(168, 85, 247, 0.12), transparent 55%),
    radial-gradient(900px 500px at 90% 0%, rgba(0, 212, 255, 0.1), transparent 50%),
    var(--bg-deep);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

a:hover {
  color: #7ee8ff;
}

code {
  font-size: 0.9em;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.15em 0.4em;
  border-radius: 6px;
}

.container {
  width: min(100% - 2.5rem, var(--max-width));
  margin-inline: auto;
}

.container-narrow {
  width: min(100% - 2.5rem, 640px);
}

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 11, 16, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.logo-accent {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.65rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.site-nav .nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  align-items: center;
}

.nav-link {
  color: var(--text-muted);
  font-weight: 500;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
  border-bottom-color: var(--accent);
}

.header-quick-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-left: auto;
}

.quick-link {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition);
}

.quick-link:hover {
  color: var(--accent);
  background: rgba(0, 212, 255, 0.08);
  border-color: rgba(0, 212, 255, 0.3);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 11, 16, 0.97);
    border-bottom: 1px solid var(--border-subtle);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .site-nav.is-open {
    max-height: 420px;
  }

  .site-nav .nav-list {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem 1.25rem;
  }

  .header-quick-links {
    gap: 0.5rem;
  }

  .quick-link {
    font-size: 0.85rem;
    padding: 0.35rem 0.6rem;
  }
}

/* ----- Hero ----- */
.hero {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 212, 255, 0.15), transparent 55%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent);
  margin: 0 0 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.15;
}

.gradient-text {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-tagline {
  max-width: 36rem;
  margin: 0 auto 2rem;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-presets {
  margin: 1.75rem auto 0;
  max-width: 28rem;
}

.hero-presets a {
  color: var(--accent);
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #0099cc);
  color: #041018;
  box-shadow: 0 8px 28px var(--accent-glow);
}

.btn-primary:hover {
  box-shadow: 0 12px 36px rgba(0, 212, 255, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border-color: var(--border-subtle);
}

.btn-secondary:hover {
  border-color: rgba(0, 212, 255, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: rgba(0, 212, 255, 0.45);
}

.btn-outline:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.2);
}

.btn-block {
  width: 100%;
}

/* ----- Sections ----- */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.02);
  border-block: 1px solid var(--border-subtle);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 1rem;
}

.section-sub {
  color: var(--text-muted);
  margin: 0 0 2.5rem;
}

.center {
  text-align: center;
}

.lead {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.grid-2 {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 880px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
}

.card-glow {
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(0, 212, 255, 0.08);
}

.card-title {
  font-family: var(--font-display);
  margin: 0 0 1rem;
  font-size: 1.25rem;
}

.check-list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.check-list li {
  margin-bottom: 0.5rem;
}

.link-arrow::after {
  content: " →";
}

.cards-3 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .cards-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.package-card.featured {
  border-color: rgba(0, 212, 255, 0.35);
  background: linear-gradient(160deg, rgba(0, 212, 255, 0.08), var(--bg-card));
}

.badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(168, 85, 247, 0.25);
  color: #e9d5ff;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

.package-name {
  font-family: var(--font-display);
  margin: 0;
  font-size: 1.35rem;
}

.package-price {
  color: var(--text-muted);
  margin: 0;
}

.package-price strong {
  color: var(--accent);
  font-size: 1.5rem;
}

.package-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.package-features {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--text-muted);
  flex: 1;
}

.testimonial-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  margin: 0;
}

.testimonial footer {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cta-band {
  padding: 3rem 0;
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: linear-gradient(120deg, rgba(0, 212, 255, 0.12), rgba(168, 85, 247, 0.12));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 2rem;
}

.cta-title {
  font-family: var(--font-display);
  margin: 0 0 0.35rem;
}

.cta-text {
  margin: 0;
  color: var(--text-muted);
}

/* ----- Page hero (inner pages) ----- */
.page-hero {
  padding: 3.5rem 0 2rem;
  border-bottom: 1px solid var(--border-subtle);
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 1rem;
}

.page-lead {
  max-width: 42rem;
  color: var(--text-muted);
  margin: 0;
}

/* ----- Services list ----- */
.service-list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.service-list li {
  margin-bottom: 0.75rem;
}

.packages-stack {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .packages-stack {
    grid-template-columns: repeat(2, 1fr);
  }
}

.package-detail.featured {
  border-color: rgba(0, 212, 255, 0.35);
}

.package-detail-head {
  margin-bottom: 1rem;
}

.package-price-large {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin: 0.25rem 0;
  color: var(--accent);
}

.package-price-large .currency {
  font-size: 1.25rem;
  vertical-align: super;
  margin-right: 0.15rem;
}

/* ----- Upload ----- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  color: var(--text-primary);
  font: inherit;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
}

.dropzone {
  position: relative;
  border: 2px dashed rgba(0, 212, 255, 0.35);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.dropzone:hover,
.dropzone:focus {
  border-color: var(--accent);
  background: rgba(0, 212, 255, 0.04);
}

.dropzone.is-dragover {
  border-color: var(--accent-2);
  background: rgba(168, 85, 247, 0.08);
}

.dropzone-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.dropzone-inner {
  pointer-events: none;
}

.dropzone-icon {
  font-size: 2rem;
  color: var(--accent);
}

.dropzone-text {
  margin: 0.5rem 0 0;
  color: var(--text-muted);
}

.link-like {
  color: var(--accent);
  text-decoration: underline;
}

.dropzone-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0.35rem 0 0;
}

.file-list {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.file-list li {
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.upload-progress-wrap {
  margin-bottom: 1.25rem;
}

.upload-progress-wrap.hidden {
  display: none;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: var(--text-muted);
}

.progress-bar {
  height: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: inherit;
  transition: width 0.1s linear;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.muted {
  color: var(--text-muted);
}

.small {
  font-size: 0.85rem;
}

.mt-lg {
  margin-top: 2rem;
}

/* ----- Payments ----- */
.payment-instructions {
  margin-bottom: 2rem;
}

.numbered-list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.numbered-list li {
  margin-bottom: 0.5rem;
}

.payment-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .payment-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.payment-card {
  text-align: center;
}

.payment-title {
  font-family: var(--font-display);
  margin: 0 0 1rem;
}

.qr-placeholder {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.qr-placeholder img {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.payment-handle {
  font-weight: 600;
  margin: 0 0 1rem;
}

.paypal-form {
  margin-top: 0.75rem;
}

/* ----- Portfolio ----- */
.portfolio-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.portfolio-thumb {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid var(--border-subtle);
}

.portfolio-title {
  font-family: var(--font-display);
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.portfolio-meta {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.audio-player {
  width: 100%;
  margin-top: 0.5rem;
}

.compare-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .compare-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.compare-title {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0 0 0.75rem;
}

/* ----- Contact ----- */
.contact-grid {
  align-items: start;
}

.contact-card p {
  margin: 0.5rem 0;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-pill {
  display: inline-flex;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.social-pill:hover {
  color: var(--text-primary);
  border-color: rgba(0, 212, 255, 0.4);
}

/* ----- FAQ accordion ----- */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.accordion-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  background: var(--bg-card);
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background var(--transition);
}

.accordion-trigger:hover {
  background: rgba(255, 255, 255, 0.04);
}

.accordion-icon {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(225deg);
}

.accordion-panel {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-muted);
}

.accordion-panel[hidden] {
  display: none;
}

.accordion-panel p {
  margin: 0;
}

/* ----- Footer ----- */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 2.5rem 0;
  margin-top: 2rem;
  background: rgba(0, 0, 0, 0.25);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  text-align: center;
}

.footer-tag {
  margin: 0.35rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.social-link:hover {
  color: var(--text-primary);
  border-color: var(--accent);
}

.copyright {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
