/* ============================================
   PetStyle — Boutique Vêtements pour Animaux
   Warm-organic motif | Coral + Teal palette
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=DM+Sans:wght@400;500;700&display=swap');

:root {
  --primary: #E8654A;
  --primary-dark: #C74E36;
  --secondary: #1A5653;
  --secondary-light: #237A76;
  --accent: #F0B429;
  --accent-light: #FCEABB;
  --bg: #FFF8F0;
  --bg-alt: #FFF1E3;
  --bg-dark: #1A2E35;
  --text: #2D2D2D;
  --text-light: #6B6B6B;
  --text-on-dark: #F5EDE4;
  --white: #FFFFFF;
  --border: #E8DDD1;
  --shadow: rgba(26, 86, 83, 0.08);
  --shadow-strong: rgba(26, 86, 83, 0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --font-display: 'Poppins', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }

.section-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  margin-bottom: 1.25rem;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 640px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 101, 74, 0.35);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 86, 83, 0.3);
}

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

.btn-white {
  background: var(--white);
  color: var(--primary);
}
.btn-white:hover {
  background: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
  padding: 0;
}

.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px var(--shadow);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--secondary);
}

.nav-logo img {
  height: 42px;
  width: auto;
  border-radius: var(--radius-sm);
}

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

.nav-links a {
  padding: 8px 18px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: rgba(232, 101, 74, 0.08);
}

.nav-cta {
  margin-left: 12px;
}

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

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text);
  border-radius: 3px;
  transition: all var(--transition);
}

.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 Sections ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--secondary) 0%, #1A3A4A 50%, var(--primary-dark) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(232, 101, 74, 0.2) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(240, 180, 41, 0.15) 0%, transparent 50%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 86, 83, 0.82) 0%, rgba(26, 46, 53, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 680px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.hero h1 .highlight {
  color: var(--accent);
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 2rem;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-badge svg {
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-shape {
  position: absolute;
  z-index: 1;
  opacity: 0.06;
}

.hero-shape-1 {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--accent);
  top: -150px;
  right: -100px;
}

.hero-shape-2 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--primary);
  bottom: -80px;
  left: -60px;
}

/* ── Page Hero (smaller) ── */
.page-hero {
  position: relative;
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--secondary) 0%, #1A3A4A 60%, var(--primary-dark) 100%);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(240, 180, 41, 0.12) 0%, transparent 50%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 600px;
}

/* ── Sections ── */
.section {
  padding: 100px 0;
}

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

.section-dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark .section-subtitle {
  color: rgba(245, 237, 228, 0.7);
}

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

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ── Categories Grid ── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 20px var(--shadow);
  transition: all var(--transition);
  padding: 40px 30px;
  text-align: center;
  border: 1px solid var(--border);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--shadow-strong);
  border-color: var(--primary);
}

.category-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(232, 101, 74, 0.1), rgba(240, 180, 41, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}

.category-card h3 {
  margin-bottom: 0.5rem;
}

.category-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.category-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 500;
  font-size: 0.9rem;
  margin-top: 12px;
  transition: gap var(--transition);
}

.category-card:hover .card-link {
  gap: 10px;
}

/* ── Products / Bestsellers ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px var(--shadow-strong);
}

.product-image {
  height: 220px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 14px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
  font-family: var(--font-display);
}

.product-info {
  padding: 20px;
}

.product-info h4 {
  margin-bottom: 6px;
}

.product-info .price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
  font-size: 1.15rem;
}

.product-info .price .old-price {
  text-decoration: line-through;
  color: var(--text-light);
  font-weight: 400;
  font-size: 0.9rem;
  margin-left: 8px;
}

/* ── Trust Row ── */
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.trust-item:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px var(--shadow);
}

.trust-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(232, 101, 74, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

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

.trust-item h4 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.trust-item p {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 0;
}

/* ── Reviews ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 4px 16px var(--shadow);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px var(--shadow-strong);
}

.review-stars {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.review-text {
  font-style: italic;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.8;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1rem;
}

.review-name {
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.review-role {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ── Newsletter ── */
.newsletter {
  text-align: center;
  padding: 80px 40px;
  background: linear-gradient(135deg, var(--secondary) 0%, #1A3A4A 100%);
  border-radius: var(--radius-lg);
  color: var(--white);
}

.newsletter h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.newsletter p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 24px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.5);
}

.newsletter-form input:focus {
  border-color: var(--accent);
}

/* ── Timeline (Vertical) ── */
.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  border-radius: 3px;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
  position: relative;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-item:nth-child(odd) {
  flex-direction: row;
  padding-right: calc(50% + 40px);
  text-align: right;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
  padding-left: calc(50% + 40px);
  text-align: left;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  border: 4px solid var(--bg);
  box-shadow: 0 0 0 3px var(--primary);
  z-index: 2;
}

.timeline-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 4px 16px var(--shadow);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.timeline-content:hover {
  box-shadow: 0 8px 28px var(--shadow-strong);
  transform: translateY(-3px);
}

.timeline-date {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.timeline-content h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.timeline-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ── About Sections ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

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

.value-card {
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.value-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px var(--shadow);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.value-card h4 {
  margin-bottom: 6px;
}

.value-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* ── Contact Form ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: 0 4px 16px var(--shadow);
  border: 1px solid var(--border);
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-info-item:last-child { margin-bottom: 0; }

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(232, 101, 74, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
}

.contact-info-text h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.contact-info-text p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ── Form Messages ── */
.form-message {
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.95rem;
  margin-top: 16px;
  display: none;
  animation: slideUp 0.4s ease;
}

.form-message.success {
  display: block;
  background: rgba(34, 197, 94, 0.1);
  color: #166534;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-message.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  color: #991b1b;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Funnel / Quote ── */
.funnel-hero {
  text-align: center;
}

.funnel-hero .hero-content {
  max-width: 720px;
  margin: 0 auto;
}

.funnel-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}

.funnel-step {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px var(--shadow);
  border: 1px solid var(--border);
  counter-increment: step;
  position: relative;
  transition: all var(--transition);
}

.funnel-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px var(--shadow-strong);
  border-color: var(--primary);
}

.funnel-step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0 auto 20px;
}

.funnel-step h3 {
  margin-bottom: 8px;
}

.funnel-step p {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 0;
}

.funnel-form-wrap {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 8px 40px var(--shadow-strong);
  border: 1px solid var(--border);
}

.funnel-form-wrap h3 {
  text-align: center;
  margin-bottom: 8px;
}

.funnel-form-wrap > p {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 32px;
}

/* ── Quote Flow Steps ── */
.quote-progress {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.quote-progress-step {
  width: 40px;
  height: 4px;
  border-radius: 4px;
  background: var(--border);
  transition: background var(--transition);
}

.quote-progress-step.active {
  background: var(--primary);
}

.quote-step {
  display: none;
}

.quote-step.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.quote-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
}

.service-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.service-option {
  padding: 16px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  font-weight: 500;
}

.service-option:hover {
  border-color: var(--primary);
}

.service-option.selected {
  border-color: var(--primary);
  background: rgba(232, 101, 74, 0.06);
  color: var(--primary);
}

/* ── Service Pages ── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.service-features {
  display: grid;
  gap: 16px;
}

.service-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.service-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(232, 101, 74, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

/* ── Footer ── */
.footer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(245, 237, 228, 0.6);
  font-size: 0.92rem;
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  color: rgba(245, 237, 228, 0.6);
  font-size: 0.92rem;
  transition: color var(--transition);
}

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

.footer-bottom {
  padding: 28px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(245, 237, 228, 0.4);
  font-size: 0.85rem;
  margin-bottom: 0;
}

.footer-signature {
  font-size: 0.75rem;
  text-align: center;
  color: rgba(245, 237, 228, 0.4);
  opacity: 0.6;
  margin-top: 12px;
}

.footer-signature a {
  color: inherit;
  border-bottom: 1px dotted currentColor;
  transition: opacity var(--transition);
}

.footer-signature a:hover {
  opacity: 1;
}

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

/* ── Mobile Menu ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 999;
  padding: 32px 24px;
  overflow-y: auto;
}

.mobile-menu.open {
  display: block;
  animation: fadeIn 0.3s ease;
}

.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:hover {
  color: var(--primary);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-grid { gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 40px; }
}

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

  .hero { min-height: 80vh; padding: 0 20px; }
  .section { padding: 70px 0; }

  .categories-grid { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .funnel-steps { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .newsletter-form { flex-direction: column; }

  .timeline::before { left: 20px; }
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    flex-direction: row;
    padding-right: 0;
    padding-left: 56px;
    text-align: left;
  }
  .timeline-dot { left: 20px; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-badges { flex-direction: column; }

  .funnel-form-wrap { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { min-height: 75vh; }
  .products-grid { grid-template-columns: 1fr; }
  .service-options { grid-template-columns: 1fr; }
}
