/* ============================================================
   PhotoStudio — Public / Landing Page Styles
   Matches _Layout.cshtml and Index.cshtml class names exactly
   ============================================================ */

/* ── Announcement Bar ──────────────────────────────────────── */
.announcement-bar {
  background: linear-gradient(90deg, #c9a84c 0%, #e0c068 50%, #c9a84c 100%);
  color: #0d1b2a;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1001;
}
.announcement-bar .ann-cta {
  color: #0d1b2a;
  font-weight: 700;
  text-decoration: underline;
  margin-left: 0.5rem;
  white-space: nowrap;
}
.announcement-bar .ann-cta:hover { opacity: 0.75; }

/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 27, 42, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}
.navbar.scrolled {
  background: rgba(13, 27, 42, 0.99);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #8a6f34, #c9a84c);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d1b2a;
  font-size: 0.95rem;
}
.brand-text {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: #f0ece4;
  letter-spacing: 0.02em;
}
.brand-text strong { color: #c9a84c; }

/* Nav menu */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
  margin-left: auto;
}
.nav-menu li { list-style: none; }
.nav-link {
  display: block;
  color: #8a9bb0;
  padding: 0.45rem 0.9rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: #f0ece4;
  background: rgba(255, 255, 255, 0.07);
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Auth buttons */
.btn-outline-nav {
  display: inline-block;
  padding: 0.45rem 1.1rem;
  border: 1px solid rgba(201, 168, 76, 0.45);
  border-radius: 6px;
  color: #c9a84c;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-outline-nav:hover {
  border-color: #c9a84c;
  background: rgba(201, 168, 76, 0.08);
  color: #e0c068;
}
.btn-primary-nav {
  display: inline-block;
  padding: 0.48rem 1.2rem;
  background: linear-gradient(135deg, #c9a84c, #e0c068);
  border-radius: 6px;
  color: #0d1b2a;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary-nav:hover {
  background: linear-gradient(135deg, #e0c068, #f0d080);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.35);
  color: #0d1b2a;
}

/* User dropdown */
.user-dropdown { position: relative; }
.user-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 50px;
  padding: 0.35rem 0.75rem 0.35rem 0.4rem;
  color: #f0ece4;
  cursor: pointer;
  font-size: 0.875rem;
  transition: all 0.2s;
}
.user-btn:hover { border-color: #c9a84c; }
.user-avatar-sm {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8a6f34, #c9a84c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0d1b2a;
}
.user-btn .fa-chevron-down { font-size: 0.65rem; color: #8a9bb0; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 210px;
  background: #162336;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  display: none;
  animation: ddFadeIn 0.18s ease;
  z-index: 2000;
}
.dropdown-menu.show { display: block; }
@keyframes ddFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.dropdown-header {
  padding: 0.85rem 1rem 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.drop-name {
  font-size: 0.82rem;
  color: #8a9bb0;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  color: #8a9bb0;
  font-size: 0.875rem;
  transition: all 0.15s;
  text-decoration: none;
  background: none;
  border: none;
  width: 100%;
  cursor: pointer;
  text-align: left;
}
.dropdown-item:hover { background: rgba(255,255,255,0.06); color: #f0ece4; }
.dropdown-item .fa-sign-out-alt, .dropdown-item.text-danger { color: #e05c5c; }
.dropdown-item.text-danger:hover { color: #ff7070; background: rgba(224,92,92,0.08); }
.dropdown-item.admin-item:hover { color: #c9a84c; }
.dropdown-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 0.2rem 0; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #f0ece4;
  border-radius: 2px;
  transition: all 0.25s;
}

/* ── Hero Section ───────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #0b1120;
  padding-top: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 30%, rgba(201,168,76,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(74,159,212,0.05) 0%, transparent 55%),
    linear-gradient(160deg, #0b1120 0%, #0f1a2e 50%, #0b1a1a 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  flex: 1;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: #c9a84c;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 1rem;
}
.hero-headline em {
  font-style: italic;
  background: linear-gradient(135deg, #c9a84c, #e0c068);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 600;
  color: #c9a84c;
  margin-bottom: 0.75rem;
}
.hero-desc {
  font-size: 1rem;
  color: #8a9bb0;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.btn-hero-primary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, #c9a84c, #e0c068);
  color: #0d1b2a;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.45);
  color: #0d1b2a;
}
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border: 1px solid rgba(201,168,76,0.4);
  color: #c9a84c;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-hero-secondary:hover {
  background: rgba(201,168,76,0.08);
  border-color: #c9a84c;
  color: #e0c068;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: #8a9bb0;
}
.trust-item .fa-check-circle { color: #4caf7d; }

/* Hero Visual / Browser Mockup */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-mockup { width: 100%; max-width: 480px; }
.mockup-browser {
  background: #162336;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.15);
  transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
  transition: transform 0.4s ease;
}
.mockup-browser:hover { transform: perspective(1000px) rotateY(0deg) rotateX(0deg); }
.mockup-bar {
  background: #1e3048;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mockup-bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.mockup-bar span:nth-child(1) { background: #e05c5c; }
.mockup-bar span:nth-child(2) { background: #e09a3c; }
.mockup-bar span:nth-child(3) { background: #4caf7d; }
.mockup-screen { padding: 1rem; min-height: 260px; }
.mockup-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.mgp {
  border-radius: 6px;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1e3048, #2a4060);
  position: relative;
  overflow: hidden;
}
.mgp::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(201,168,76,0.1) 100%);
}
.mgp1 { background: linear-gradient(135deg, #1e3048 0%, #2a4f7a 100%); }
.mgp2 { background: linear-gradient(135deg, #2a3048 0%, #3a4060 100%); }
.mgp3 { background: linear-gradient(135deg, #1a2840 0%, #243858 100%); }
.mgp4 { background: linear-gradient(135deg, #203040 0%, #2c4a5a 100%); }
.mgp5 { background: linear-gradient(135deg, #1e2a38 0%, #2a3848 100%); }
.mgp6 { background: linear-gradient(135deg, #182838 0%, #243450 100%); }

/* Hero Stats Bar */
.hero-stats {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 12px;
  width: calc(100% - 3rem);
  overflow: hidden;
}
.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem 1rem;
  gap: 0.2rem;
  text-align: center;
}
.stat-item strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #c9a84c;
  line-height: 1;
}
.stat-item span {
  font-size: 0.8rem;
  color: #8a9bb0;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(201,168,76,0.15);
  flex-shrink: 0;
}

/* ── Section Commons ────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-badge {
  display: inline-block;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  color: #c9a84c;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}
.section-desc { font-size: 1rem; color: #8a9bb0; max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ── Features Section ───────────────────────────────────────── */
.features-section {
  padding: 5rem 0;
  background: #0f1a2e;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: rgba(22,35,54,0.7);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.25); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}
.icon-blue   { background: rgba(74,159,212,0.15);  color: #4a9fd4; }
.icon-rose   { background: rgba(224,92,92,0.15);   color: #e05c92; }
.icon-gold   { background: rgba(201,168,76,0.15);  color: #c9a84c; }
.icon-green  { background: rgba(76,175,125,0.15);  color: #4caf7d; }
.icon-purple { background: rgba(149,92,224,0.15);  color: #955ce0; }
.icon-teal   { background: rgba(38,198,180,0.15);  color: #26c6b4; }
.feature-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #f0ece4; margin-bottom: 0.65rem; }
.feature-card p  { font-size: 0.9rem; color: #8a9bb0; line-height: 1.65; }

/* ── How It Works ───────────────────────────────────────────── */
.how-section {
  padding: 5rem 0;
  background: #0b1120;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
.step-card {
  background: rgba(22,35,54,0.6);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.25s;
}
.step-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.step-card h3 { font-size: 1.1rem; color: #f0ece4; margin-bottom: 0.6rem; }
.step-card p  { font-size: 0.875rem; color: #8a9bb0; line-height: 1.6; }
.step-arrow {
  color: rgba(201,168,76,0.35);
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* ── Pricing Preview ────────────────────────────────────────── */
.pricing-preview-section {
  padding: 5rem 0;
  background: #0f1a2e;
}
.pricing-cards-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.pricing-card-preview {
  background: rgba(22,35,54,0.7);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 2.25rem 2rem;
  text-align: center;
  position: relative;
  transition: all 0.25s;
}
.pricing-card-preview:hover { border-color: rgba(201,168,76,0.2); transform: translateY(-4px); }
.pricing-card-preview.popular {
  border-color: rgba(201,168,76,0.45);
  background: rgba(30,48,72,0.9);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.2), 0 16px 48px rgba(0,0,0,0.4);
  transform: scale(1.04);
}
.pricing-card-preview.popular:hover { transform: scale(1.04) translateY(-4px); }
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #c9a84c, #e0c068);
  color: #0d1b2a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}
.pricing-card-preview h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: #f0ece4;
  margin-bottom: 1.25rem;
}
.price-display { display: flex; align-items: baseline; justify-content: center; gap: 0.1rem; margin-bottom: 0.75rem; }
.currency { font-size: 1.4rem; color: #c9a84c; font-weight: 600; }
.amount { font-size: 3.2rem; font-weight: 800; color: #ffffff; line-height: 1; font-family: 'Playfair Display', serif; }
.period { font-size: 0.9rem; color: #8a9bb0; }
.plan-desc { font-size: 0.875rem; color: #8a9bb0; margin-bottom: 1.75rem; line-height: 1.5; min-height: 2.5em; }
.btn { display: inline-block; padding: 0.7rem 1.75rem; border-radius: 8px; font-weight: 600; font-size: 0.9rem; text-decoration: none; transition: all 0.2s; text-align: center; cursor: pointer; border: none; }
.btn.btn-primary { background: linear-gradient(135deg,#c9a84c,#e0c068); color:#0d1b2a; }
.btn.btn-primary:hover { filter: brightness(1.1); transform: translateY(-1px); color:#0d1b2a; }
.btn.btn-outline { border: 1px solid rgba(201,168,76,0.35); color: #c9a84c; background: transparent; }
.btn.btn-outline:hover { background: rgba(201,168,76,0.1); border-color: #c9a84c; color:#e0c068; }
.pricing-cta { text-align: center; }
.see-all-plans { color: #c9a84c; font-weight: 600; font-size: 0.9rem; text-decoration: none; border-bottom: 1px solid rgba(201,168,76,0.3); padding-bottom: 1px; transition: all 0.2s; }
.see-all-plans:hover { color: #e0c068; border-color: #e0c068; }

/* ── Testimonials ────────────────────────────────────────────── */
.testimonials-section { padding: 5rem 0; background: #0b1120; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testimonial-card {
  background: rgba(22,35,54,0.65);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 2rem;
  transition: all 0.25s;
}
.testimonial-card.featured {
  border-color: rgba(201,168,76,0.3);
  background: rgba(30,48,72,0.8);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.2); }
.stars { color: #c9a84c; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testimonial-card p { font-size: 0.9rem; color: #a0aec0; line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #8a6f34, #c9a84c);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: #0d1b2a; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: #f0ece4; margin-bottom: 0.1rem; }
.testimonial-author span { font-size: 0.78rem; color: #8a9bb0; }

/* ── CTA Section ─────────────────────────────────────────────── */
.cta-section { padding: 5rem 0; background: #0f1a2e; }
.cta-box {
  background: linear-gradient(135deg, rgba(30,48,72,0.9) 0%, rgba(22,35,54,0.9) 100%);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 20px;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.06) 0%, transparent 60%);
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #ffffff;
  margin-bottom: 1rem;
}
.cta-content p { font-size: 1rem; color: #8a9bb0; max-width: 520px; margin: 0 auto 2rem; line-height: 1.7; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.btn-cta-primary {
  display: inline-block;
  padding: 0.9rem 2.25rem;
  background: linear-gradient(135deg, #c9a84c, #e0c068);
  color: #0d1b2a;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-cta-primary:hover { transform: translateY(-2px); filter: brightness(1.1); color: #0d1b2a; }
.btn-cta-secondary {
  display: inline-block;
  padding: 0.9rem 2.25rem;
  border: 1px solid rgba(201,168,76,0.35);
  color: #c9a84c;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-cta-secondary:hover { background: rgba(201,168,76,0.08); border-color: #c9a84c; color: #e0c068; }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer { background: #060d16; border-top: 1px solid rgba(201,168,76,0.1); }
.footer-main { padding: 4rem 0 2.5rem; }
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #f0ece4;
  text-decoration: none;
  margin-bottom: 1rem;
}
.footer-logo .fa-camera-retro { color: #c9a84c; }
.footer-logo strong { color: #c9a84c; }
.footer-tagline { font-size: 0.875rem; color: #8a9bb0; line-height: 1.65; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-links a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #8a9bb0; font-size: 0.875rem;
  transition: all 0.2s;
  text-decoration: none;
}
.social-links a:hover { background: rgba(201,168,76,0.15); border-color: rgba(201,168,76,0.3); color: #c9a84c; }

.footer-links-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #c9a84c;
  margin-bottom: 1.25rem;
}
.footer-links-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links-col ul li a { font-size: 0.875rem; color: #8a9bb0; text-decoration: none; transition: color 0.2s; }
.footer-links-col ul li a:hover { color: #f0ece4; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p { font-size: 0.8rem; color: #8a9bb0; margin: 0; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.8rem; color: #8a9bb0; text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: #c9a84c; }

/* ── Toast ───────────────────────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}
.toast {
  background: #1e3048;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 10px;
  padding: 0.85rem 1.25rem;
  color: #f0ece4;
  font-size: 0.875rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  display: flex; align-items: center; gap: 0.6rem;
  animation: toastIn 0.3s ease;
  pointer-events: all;
  min-width: 260px; max-width: 360px;
}
.toast.success { border-color: rgba(76,175,125,0.4); }
.toast.success::before { content: '✓'; color: #4caf7d; font-weight: 700; }
.toast.error   { border-color: rgba(224,92,92,0.4); }
.toast.error::before { content: '✕'; color: #e05c5c; font-weight: 700; }
@keyframes toastIn { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(13,27,42,0.99);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-menu li { width: 100%; }
  .nav-link { padding: 0.75rem 1rem; font-size: 1rem; width: 100%; }

  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 1.5rem 2rem; text-align: center; }
  .hero-visual { order: -1; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-stats { flex-direction: column; gap: 0; width: calc(100% - 3rem); }
  .stat-divider { width: 80%; height: 1px; }

  .steps-grid { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .pricing-card-preview.popular { transform: scale(1); }

  .btn-outline-nav { display: none; }
  .nav-actions { gap: 0.5rem; }
}

@media (max-width: 480px) {
  .hero-stats { padding-bottom: 3rem; }
  .cta-box { padding: 2.5rem 1.5rem; }
  .announcement-bar { font-size: 0.75rem; }
}
