/* ================================================
   RESTORE MY PHOTOS — DISCOUNT LANDING PAGE
   Pure CSS — No frameworks, no preprocessors
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* ========== RESET ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  color: #1e293b;
  line-height: 1.7;
  overflow-x: hidden;
}

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

:root {
  --primary: #0f172a;
  --primary-light: #1e293b;
  --accent: #c8860a;
  --accent-hover: #a66f08;
  --accent-light: #fef3c7;
  --accent-soft: #fbbf24;
  --text: #1e293b;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-warm: #fffbf0;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
  --radius: 12px;
  --radius-lg: 16px;
}

/* ========== UTILITY ========== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand-icon {
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.nav-brand-icon svg {
  width: 22px;
  height: 22px;
}

.nav-brand-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav-brand-text strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.nav-brand-text span {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}

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

.nav-cta-btn {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta-btn:hover {
  background: var(--accent-hover) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== HERO ========== */
.hero {
  padding-top: 72px;
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 64px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #dcfce7;
  color: #166534;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22,101,52,0.15); }
  50% { box-shadow: 0 0 0 8px rgba(22,101,52,0); }
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.9rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 16px;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.7;
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: #22c55e;
  flex-shrink: 0;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-discount-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

.hero-image-area {
  position: relative;
}

.hero-image-area img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.discount-ribbon {
  position: absolute;
  top: -8px;
  right: 24px;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #fff;
  padding: 12px 24px 12px 18px;
  border-radius: 4px 0 0 4px;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(200,134,10,0.3);
  animation: float 3s ease-in-out infinite;
}

.discount-ribbon::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: -10px;
  width: 0;
  height: 0;
  border-left: 10px solid var(--accent-hover);
  border-bottom: 10px solid transparent;
}

.discount-ribbon small {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.9;
}

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

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(200,134,10,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn svg { width: 18px; height: 18px; }

.btn-white {
  background: #fff;
  color: var(--primary);
}

.btn-white:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* ========== TRUST BAR ========== */
.trust-bar {
  background: var(--primary);
  padding: 36px 0;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.trust-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 2px;
}

.trust-stat-label {
  font-size: 0.82rem;
  color: #94a3b8;
  font-weight: 500;
}

/* ========== SECTIONS ========== */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.02rem;
}

.gallery-cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

/* ========== BEFORE & AFTER ========== */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ba-slider-container {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  padding: 18px 18px 22px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.ba-slider-container:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  cursor: ew-resize;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-light);
  touch-action: none;
  user-select: none;
}

.ba-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.after-img {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.before-img-container {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
  z-index: 2;
}

.before-img {
  position: absolute;
  inset: 0;
  z-index: 3;
  height: 100%;
  max-width: none;
}

.slider-label {
  position: absolute;
  bottom: 10px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 6;
}

.slider-label.label-before {
  left: 10px;
  background: rgba(0,0,0,0.6);
  color: #fff;
}

.slider-label.label-after {
  right: 10px;
  background: rgba(34,197,94,0.85);
  color: #fff;
}

.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  z-index: 7;
  transform: translateX(-50%);
  pointer-events: none;
}

.slider-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.slider-handle::before {
  content: '\2194';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
}

/* ========== SERVICES ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-soft);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 14px;
}

.service-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.service-link:hover { gap: 8px; }
.service-link svg { width: 16px; height: 16px; }

/* ========== FILM SCANNING ========== */
.film-scanning-layout {
  display: grid;
  gap: 32px;
}

.film-scanning-top {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}

.film-scanning-media {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-md);
}

.film-scanning-media img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
}

.film-scanning-content .section-label {
  margin-bottom: 10px;
}

.film-scanning-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 16px;
}

.film-scanning-content > p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 1rem;
}

.film-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.film-service-card {
  padding: 28px;
}

.film-card-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  margin-bottom: 22px;
}

.film-card-price {
  text-align: right;
  min-width: 180px;
}

.film-card-price .pricing-save {
  margin-bottom: 10px;
}

.film-service-card .pricing-amount {
  line-height: 1.05;
}

.film-service-card .pricing-desc {
  margin-bottom: 0;
}

.film-card-body {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 24px 32px;
  margin-bottom: 8px;
}

.film-card-column {
  min-width: 0;
}

.film-card-column .pricing-features {
  margin-bottom: 0;
}

.film-card-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 12px;
  margin-bottom: 0;
  line-height: 1.7;
}

.film-use-label {
  display: inline-block;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.film-use-list {
  margin-bottom: 18px;
}

.film-use-list li {
  position: relative;
  padding-left: 16px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.5;
}

.film-use-list li::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-soft);
}

.film-card-note {
  font-size: 0.92rem;
  color: var(--primary);
}

.film-scanning-trust {
  padding: 28px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.film-scanning-trust h3,
.film-scanning-cta h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}

.film-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
}

.film-trust-grid .trust-item {
  font-size: 0.9rem;
}

.film-scanning-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.film-scanning-cta {
  padding: 28px;
  background: var(--accent-light);
  border: 1px solid #fde68a;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.film-scanning-cta p {
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.film-scanning-cta .btn {
  margin-top: 6px;
}

/* ========== HOW IT WORKS ========== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-soft), transparent);
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
}

.step h3 {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.step p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========== PRICING ========== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

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

.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--bg-warm), var(--bg-white));
  box-shadow: var(--shadow-md);
}

.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  letter-spacing: 1px;
}

.was-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 1rem;
}

.pricing-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.pricing-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}

.pricing-amount small {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
}

.pricing-save {
  display: inline-block;
  background: #dcfce7;
  color: #166534;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pricing-features {
  margin-bottom: 24px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
  line-height: 1.5;
}

.pricing-features li svg {
  width: 18px;
  height: 18px;
  stroke: #22c55e;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

.pricing-guarantee {
  text-align: center;
  margin-top: 32px;
  padding: 20px 28px;
  background: var(--accent-light);
  border-radius: var(--radius);
  border: 1px solid #fde68a;
}

.pricing-guarantee p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pricing-guarantee strong { color: var(--primary); }

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-soft);
}

.testimonial-card blockquote {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
}

.testimonial-info h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.testimonial-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ========== FAQ ========== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  background: var(--bg-white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--accent); }

.faq-question svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-muted);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  stroke: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 250px;
}

/* ========== FINAL CTA ========== */
.final-cta {
  background: var(--primary);
  padding: 80px 0;
  text-align: center;
}

.final-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.final-cta p {
  color: #94a3b8;
  max-width: 520px;
  margin: 0 auto 32px;
  font-size: 1.02rem;
}

.final-cta .discount-highlight {
  color: var(--accent-soft);
  font-weight: 700;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--primary);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-brand h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--accent-soft); }

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  margin-bottom: 0;
}

.footer-socials a:hover {
  border-color: var(--accent);
  background: rgba(200,134,10,0.15);
}

.footer-socials svg {
  width: 16px;
  height: 16px;
  fill: #94a3b8;
}

.footer-socials a:hover svg { fill: var(--accent-soft); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: #64748b;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: #64748b;
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: #94a3b8; }

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: transform 0.2s;
  animation: pulse-wa 2s ease-in-out infinite;
}

.whatsapp-float:hover { transform: scale(1.08); }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.35); }
  50% { box-shadow: 0 4px 24px rgba(37,211,102,0.55); }
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* ========== FADE IN ANIMATION ========== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== MOBILE NAV ========== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: #fff;
  z-index: 999;
  padding: 80px 28px 28px;
  transition: right 0.3s;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
}

.mobile-nav.open { right: 0; }

.mobile-nav a:not(.btn) {
  display: block;
  padding: 14px 0;
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border-light);
  transition: color 0.2s;
}

.mobile-nav a:not(.btn):hover { color: var(--accent); }

.mobile-nav .btn {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
  border-bottom: none;
  padding: 14px 20px;
  color: #fff;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 998;
}

.mobile-overlay.show { display: block; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
  .hero-image-area { max-width: 560px; margin: 0 auto; }
  .film-scanning-top { grid-template-columns: 1fr; gap: 32px; }
  .film-scanning-media { max-width: 620px; margin: 0 auto; }
  .film-service-grid { grid-template-columns: 1fr; }
  .film-scanning-bottom { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .ba-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }

  .hero h1 { font-size: 2.1rem; }
  .hero { padding-top: 72px; }

  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .section { padding: 56px 0; }
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: 1.8rem; }
  .film-scanning-content h2 { font-size: 1.8rem; }

  .ba-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .film-card-header { grid-template-columns: 1fr; gap: 16px; }
  .film-card-price { text-align: left; min-width: 0; }
  .film-card-body { grid-template-columns: 1fr; gap: 18px; }
  .film-trust-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .final-cta h2 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-buttons { flex-direction: column; }
  .trust-bar-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 3000;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner-inner {
  max-width: 1180px;
  margin: 0 auto;
  background: rgba(15, 23, 42, 0.96);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.cookie-banner-inner p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.92);
}

.cookie-banner-inner a {
  color: #fbbf24;
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
}

.cookie-banner .btn {
  padding: 10px 16px;
  font-size: 0.9rem;
}

.cookie-banner .btn-outline {
  border-color: rgba(255,255,255,0.28);
  color: #fff;
}

.cookie-banner .btn-outline:hover {
  border-color: #fbbf24;
  color: #fbbf24;
  transform: none;
}
