﻿:root {
  --bg: #0b0d12;
  --bg-2: #0f1320;
  --card: rgba(255, 255, 255, 0.06);
  --stroke: rgba(255, 255, 255, 0.15);
  --text: #f7f7fb;
  --muted: #b7b9c9;
  --accent: #ff6b4a;
  --accent-2: #f8d66d;
  --accent-3: #45e1c9;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 20px;
  --font-body: "Manrope", system-ui, -apple-system, sans-serif;
  --font-head: "Playfair Display", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: radial-gradient(circle at 15% 15%, rgba(255, 107, 74, 0.18), transparent 45%),
    radial-gradient(circle at 85% 10%, rgba(69, 225, 201, 0.18), transparent 50%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3 {
  font-family: var(--font-head);
  margin: 0 0 16px;
  line-height: 1.1;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.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);
}

.section-head {
  max-width: 680px;
  margin-bottom: 32px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(11, 13, 18, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  box-shadow: 0 0 12px rgba(255, 107, 74, 0.6);
}

.brand-name {
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
}

.nav a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ff915f);
  color: #111;
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text);
  padding: 10px 18px;
}

.hero {
  padding: 110px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.lead {
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0 32px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
}

.meta-item {
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.meta-value {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.meta-label {
  font-size: 12px;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 22px;
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.tile {
  padding: 34px 10px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  backdrop-filter: blur(6px);
  animation: float 6s ease-in-out infinite;
}

.tile.t2 { animation-delay: 0.4s; }
.tile.t3 { animation-delay: 0.8s; }
.tile.t4 { animation-delay: 1.2s; }
.tile.t5 { animation-delay: 1.6s; }
.tile.t6 { animation-delay: 2s; }

.glow-card {
  padding: 22px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(69, 225, 201, 0.2), rgba(255, 107, 74, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
}

.glow-label {
  font-size: 12px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--accent-2);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.step {
  padding: 24px;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-num {
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.shot {
  display: grid;
  gap: 10px;
}

.shot-tag {
  font-size: 12px;
  color: var(--muted);
}

.shot-card {
  height: 220px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.shot-card.alt {
  background: linear-gradient(135deg, rgba(69, 225, 201, 0.25), rgba(15, 19, 32, 0.4));
}

.shot-card.warm {
  background: linear-gradient(135deg, rgba(255, 214, 109, 0.3), rgba(255, 107, 74, 0.12));
}

.shot-card.cool {
  background: linear-gradient(135deg, rgba(99, 141, 255, 0.25), rgba(12, 17, 33, 0.4));
}

.shot-card.vivid {
  background: linear-gradient(135deg, rgba(255, 107, 74, 0.35), rgba(69, 225, 201, 0.18));
}

.shot-card.soft {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(248, 214, 109, 0.2));
}

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.price-card {
  padding: 28px;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.price-card.featured {
  background: linear-gradient(145deg, rgba(255, 107, 74, 0.22), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 107, 74, 0.4);
  transform: translateY(-6px);
}

.ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent-2);
  color: #111;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  margin: 16px 0;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.features li {
  margin-bottom: 10px;
  color: var(--muted);
}

.note {
  color: var(--muted);
  font-size: 13px;
  margin-top: 14px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.quote {
  padding: 22px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq details {
  background: var(--card);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 20px;
  margin-bottom: 12px;
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
}

.cta {
  padding: 70px 0 90px;
  background: linear-gradient(135deg, rgba(255, 107, 74, 0.2), rgba(69, 225, 201, 0.15));
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.site-footer {
  padding: 24px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}

.bg-orb {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  z-index: 0;
}

.orb-1 {
  background: rgba(255, 107, 74, 0.4);
  top: -120px;
  left: -80px;
}

.orb-2 {
  background: rgba(69, 225, 201, 0.35);
  bottom: -140px;
  right: -60px;
}

.orb-3 {
  background: rgba(248, 214, 109, 0.3);
  top: 40%;
  right: 30%;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .hero { padding-top: 80px; }
}

@media (max-width: 680px) {
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  .section { padding: 64px 0; }
  .hero-meta { grid-template-columns: 1fr; }
}
