/* ==========================================================================
   FrameThree — Shared Stylesheet
   ========================================================================== */

:root {
  --primary: #FF6B9D;
  --secondary: #00D4FF;
  --accent: #FFD93D;
  --dark: #1A1A2E;
  --light: #F5F5F5;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', 'Segoe UI', sans-serif;

  --section-pad: 2rem;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(26, 26, 46, 0.15);
  --shadow-hover: 0 20px 45px rgba(255, 107, 157, 0.35);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: calc(var(--section-pad) * 3) 0;
}

.section-tight { padding: calc(var(--section-pad) * 2) 0; }

.section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
  color: #555;
  font-size: 1.05rem;
}

.gradient-text {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.9rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary {
  background: linear-gradient(90deg, var(--primary), #ff8fb8);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 107, 157, 0.4);
}

.btn-secondary {
  background: linear-gradient(90deg, var(--secondary), #5be0ff);
  color: var(--dark);
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

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

/* ---------- Navigation ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background:
    linear-gradient(120deg, rgba(255, 107, 157, 0.22), rgba(0, 212, 255, 0.22)),
    rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: transparent;
  border: 2px solid var(--primary);
  transform: rotate(45deg);
  box-shadow: 0 0 14px rgba(0, 212, 255, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.logo:hover .logo-mark { transform: rotate(45deg) scale(1.08); border-color: var(--secondary); box-shadow: 0 0 18px rgba(255, 107, 157, 0.6); }

.logo-mark span {
  display: inline-block;
  transform: rotate(-45deg);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.logo-mark-sm { width: 28px; height: 28px; border-radius: 7px; }
.logo-mark-sm span { font-size: 0.65rem; }

.logo-text {
  font-family: 'Sacramento', cursive;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  text-shadow: 0 0 16px rgba(0, 212, 255, 0.6);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 107, 157, 0.55), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(0, 212, 255, 0.5), transparent 45%),
    radial-gradient(circle at 50% 85%, rgba(255, 217, 61, 0.35), transparent 50%),
    var(--dark);
  background-size: 200% 200%;
  animation: gradientShift 14s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 85%);
}

/* ---------- Hero photo slideshow (home page) ---------- */
.hero-home { min-height: 94vh; }

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroSlide 25s infinite;
}

.hero-slide:nth-child(1) { background-image: url('../photos/cr1.jpg'); animation-delay: 0s; }
.hero-slide:nth-child(2) { background-image: url('../photos/cr2.jpg'); animation-delay: 5s; }
.hero-slide:nth-child(3) { background-image: url('../photos/cr3.jpg'); animation-delay: 10s; }
.hero-slide:nth-child(4) { background-image: url('../photos/cr4.jpg'); animation-delay: 15s; }
.hero-slide:nth-child(5) { background-image: url('../photos/wedding1.jpg'); background-position: center 20%; animation-delay: 20s; }

@keyframes heroSlide {
  0% { opacity: 0; transform: scale(1.12); }
  4% { opacity: 1; transform: scale(1.06); }
  18% { opacity: 1; transform: scale(1); }
  20% { opacity: 0; transform: scale(0.98); }
  100% { opacity: 0; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, rgba(26,26,46,0.32) 0%, rgba(26,26,46,0.1) 35%, rgba(26,26,46,0.5) 100%);
}

/* ---------- Single-photo hero (Events, etc.) ---------- */
.hero-photo {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: var(--hero-photo-url);
  background-size: cover;
  background-position: var(--hero-photo-position, center);
}

.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, rgba(26,26,46,0.35) 0%, rgba(26,26,46,0.15) 35%, rgba(26,26,46,0.6) 100%);
}

.hero-photo .hero-eyebrow {
  background: transparent;
  border: none;
  padding: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-photo .hero-title { text-shadow: 0 4px 24px rgba(0, 0, 0, 0.7); }

.hero-photo .hero-sub {
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.75);
}

/* ---------- Minimal hero content (home) ---------- */
.hero-home .hero-content { max-width: 640px; }

.hero-home .hero-eyebrow {
  background: transparent;
  border: none;
  padding: 0;
  font-size: 0.8rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-home .hero-title {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.7);
}

.hero-home .hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.75);
}

.hero-home .btn-primary,
.hero-home .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: none;
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
}

.hero-home .btn-primary:hover,
.hero-home .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.hero-dots {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  gap: 0.5rem;
}

.hero-dots span {
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.3);
  overflow: hidden;
  position: relative;
}

.hero-dots span::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  animation: dotFill 25s infinite;
}

.hero-dots span:nth-child(1)::after { animation-delay: 0s; }
.hero-dots span:nth-child(2)::after { animation-delay: 5s; }
.hero-dots span:nth-child(3)::after { animation-delay: 10s; }
.hero-dots span:nth-child(4)::after { animation-delay: 15s; }
.hero-dots span:nth-child(5)::after { animation-delay: 20s; }

@keyframes dotFill {
  0% { transform: scaleX(0); }
  4%, 20% { transform: scaleX(1); }
  20.001%, 100% { transform: scaleX(0); }
}

.scroll-cue {
  position: absolute;
  bottom: 1.75rem;
  right: 2rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-cue span {
  width: 1px;
  height: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), transparent);
  animation: scrollCue 1.8s ease-in-out infinite;
}

@keyframes scrollCue {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(8px); opacity: 1; }
}

@media (max-width: 768px) {
  .scroll-cue { display: none; }
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.5;
  z-index: -1;
  animation: drift 18s ease-in-out infinite;
}

.blob-1 { width: 260px; height: 260px; background: var(--primary); top: 10%; left: 8%; }
.blob-2 { width: 320px; height: 320px; background: var(--secondary); bottom: 5%; right: 6%; animation-duration: 22s; }
.blob-3 { width: 180px; height: 180px; background: var(--accent); top: 55%; left: 45%; animation-duration: 16s; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-content { max-width: 780px; padding: 2rem 1.5rem; }

.hero-eyebrow {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 1.15rem;
  color: #d8d8ea;
  margin-bottom: 2rem;
}

/* ---------- Cards (services / pricing / team) ---------- */
.grid {
  display: grid;
  gap: 1.75rem;
}

.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-6 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.card:hover::before { transform: scaleX(1); }

.card-icon { font-size: 2.4rem; margin-bottom: 1rem; }
.card h3 { font-size: 1.3rem; margin-bottom: 0.6rem; color: var(--dark); }
.card p { color: #555; font-size: 0.95rem; }

.card-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--primary);
}

/* ---------- Benefits ---------- */
.benefit {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}
.benefit:hover { transform: translateY(-6px); }
.benefit .icon { font-size: 1.8rem; }
.benefit h4 { font-size: 1.05rem; margin-bottom: 0.3rem; color: var(--dark); }
.benefit p { font-size: 0.9rem; color: #555; }

/* ---------- Photo-backed section (Why FrameThree) ---------- */
.section-photo {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}

.section-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url('../photos/cr5.jpg');
  background-size: cover;
  background-position: center 15%;
}

.section-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(20, 20, 24, 0.68);
}

.section-photo .section-subtitle { color: #e6e6ee; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }

.benefit-plain {
  background: rgba(255, 255, 255, 0.05);
  border: none;
  box-shadow: none;
  border-radius: var(--radius);
  padding: 1.4rem 1.2rem;
}

.benefit-plain:hover { transform: translateY(-4px); }
.benefit-plain h4 { color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.6); }
.benefit-plain p { color: rgba(255, 255, 255, 0.85); text-shadow: 0 2px 8px rgba(0,0,0,0.6); }
.benefit-plain .icon { filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5)); }

.benefit-glass h4 { color: #fff; }
.benefit-glass p { color: rgba(255, 255, 255, 0.8); }
.benefit-glass .icon { filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45)); }

/* ---------- Gallery ---------- */
.gallery-item {
  display: block;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transition: box-shadow 0.3s ease;
}

.gallery-item:hover { box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35); }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ---------- Pricing ---------- */
.pricing-card {
  background: #fff;
  color: var(--dark);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  border: 2px solid transparent;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card h3 { color: var(--dark); }

.pricing-card.popular {
  border-color: var(--primary);
  transform: scale(1.03);
}

.pricing-card:hover { transform: translateY(-8px); }
.pricing-card.popular:hover { transform: scale(1.03) translateY(-8px); }

.badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  padding: 0.35rem 1.1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.price {
  font-family: var(--font-head);
  font-size: 2.6rem;
  margin: 1rem 0 0.25rem;
  color: var(--dark);
}
.price span { font-size: 1rem; font-weight: 400; color: #777; }

.pricing-features { text-align: left; margin: 1.5rem 0; }
.pricing-features li {
  padding: 0.5rem 0;
  border-bottom: 1px dashed #eee;
  font-size: 0.95rem;
  color: var(--dark);
}
.pricing-features li::before { content: '✓  '; color: var(--secondary); font-weight: 700; }

/* ---------- Team ---------- */
.team-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}
.team-card:hover { transform: translateY(-10px); }

.avatar {
  width: 110px;
  height: 110px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.team-card h3 { font-size: 1.4rem; margin-bottom: 0.2rem; }
.team-title { color: var(--primary); font-weight: 600; margin-bottom: 0.8rem; }
.team-bio { color: #555; font-size: 0.92rem; margin-bottom: 1.2rem; }
.team-contact { display: flex; flex-direction: column; gap: 0.5rem; align-items: center; }
.team-contact a {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  background: var(--light);
  transition: background 0.2s ease, color 0.2s ease;
}
.team-contact a:hover { background: var(--dark); color: #fff; }

/* ---------- Process / Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}
.step {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem 1.4rem;
  box-shadow: var(--shadow);
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.step h4 { margin-bottom: 0.4rem; color: var(--dark); }
.step p { font-size: 0.9rem; color: #555; }

/* ---------- Contact ---------- */
.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.contact-card .avatar { width: 90px; height: 90px; font-size: 2.4rem; }
.contact-card h3 { margin-bottom: 0.2rem; }
.contact-card .role { color: var(--primary); font-weight: 600; margin-bottom: 1rem; font-size: 0.9rem; }
.contact-card .cta-row { flex-direction: column; }
.contact-card .btn { width: 100%; justify-content: center; }

.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  max-width: 640px;
  margin: 0 auto;
}
.form-group { margin-bottom: 1.3rem; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1.5px solid #e2e2e2;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ---------- Sections with dark background ---------- */
.section-dark {
  background: var(--dark);
  color: #fff;
}
.section-dark .section-subtitle { color: #c7c7dd; }

/* ---------- Fade-in on scroll ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  color: #eaeaea;
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--secondary);
  margin-bottom: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
  color: #fff;
}

.footer-logo .logo-text { font-size: 1.7rem; }
.footer p, .footer a { font-size: 0.9rem; color: #b8b8cf; }
.footer ul li { margin-bottom: 0.5rem; }
.footer a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  color: #8a8aa3;
}

/* ---------- Pricing note ---------- */
.notice {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,107,157,0.12), rgba(0,212,255,0.12));
  border: 1px dashed var(--primary);
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: rgba(26, 26, 46, 0.97);
    backdrop-filter: blur(14px);
    padding: 1.5rem;
    gap: 1.2rem;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .grid-3, .grid-2, .grid-4, .grid-6 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .pricing-card.popular { transform: none; }
  .pricing-card.popular:hover { transform: translateY(-8px); }
}
