/* ═══════════════════════════════════════════════
   YouWrapp — Styles
   Fonts: Poppins (headings), Inter (body)
   Colors:
     Primary:   #FF6B35 (Orange)
     Secondary: #7C3AED (Purple)
     Accent:    #10B981 (Emerald)
     Dark:      #1A1A2E (Navy)
     Light:     #FFF8F0 (Warm White)
     Gray text: #6B7280
   ═══════════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1A1A2E;
  background: #FFF8F0;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

.highlight { color: #FF6B35; }

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

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: #FF6B35;
  color: white;
  border-color: #FF6B35;
}
.btn-primary:hover {
  background: #e55a2b;
  border-color: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}
.btn-primary:focus-visible {
  outline: 3px solid #FF6B35;
  outline-offset: 2px;
}

.btn-outline {
  background: transparent;
  color: #1A1A2E;
  border-color: #1A1A2E;
}
.btn-outline:hover {
  background: #1A1A2E;
  color: white;
  transform: translateY(-2px);
}
.btn-outline:focus-visible {
  outline: 3px solid #1A1A2E;
  outline-offset: 2px;
}

.btn-nav {
  background: #FF6B35;
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-nav:hover {
  background: #e55a2b;
  transform: translateY(-1px);
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 248, 240, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(26, 26, 46, 0.06);
  padding: 16px 0;
  transition: box-shadow 0.3s ease;
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo .logo-img {
  height: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a:not(.btn-nav) {
  font-size: 15px;
  font-weight: 500;
  color: #4B5563;
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a:not(.btn-nav)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #FF6B35;
  transition: width 0.3s ease;
}
.nav-links a:not(.btn-nav):hover::after {
  width: 100%;
}
.nav-links a:not(.btn-nav):hover {
  color: #1A1A2E;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: #1A1A2E;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* ─── SECTION ─── */
.section {
  padding: 100px 0;
}
.section-alt {
  background: white;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.section-header h2 {
  margin-bottom: 16px;
}
.section-header p {
  color: #6B7280;
  font-size: 18px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 107, 53, 0.1);
  color: #FF6B35;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ─── HERO ─── */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,107,53,0.08), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content { position: relative; z-index: 1; }

.badge {
  display: inline-block;
  background: rgba(124, 58, 237, 0.1);
  color: #7C3AED;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  font-family: 'Poppins', sans-serif;
}

.hero h1 {
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 18px;
  color: #6B7280;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 32px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat strong {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #FF6B35;
}
.stat span {
  font-size: 13px;
  color: #6B7280;
  font-weight: 500;
}

/* ─── HERO ILLUSTRATION ─── */
.hero-illustration {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-box {
  width: 240px;
  position: relative;
  animation: float 3s ease-in-out infinite;
}
.box-lid {
  width: 260px;
  height: 20px;
  background: #FF6B35;
  border-radius: 6px 6px 0 0;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  box-shadow: 0 -4px 15px rgba(255,107,53,0.2);
}
.box-body {
  width: 240px;
  background: linear-gradient(135deg, #FF6B35, #e55a2b);
  border-radius: 0 0 12px 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(255,107,53,0.25);
}
.box-item {
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.15);
}

.floating-tag {
  position: absolute;
  background: white;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  font-family: 'Poppins', sans-serif;
  animation: float 4s ease-in-out infinite;
  display: inline-flex;
  align-items: center;
}
.tag-1 { top: 10%; right: 0; animation-delay: 0s; }
.tag-2 { bottom: 20%; left: -10%; animation-delay: 1s; }
.tag-3 { top: 50%; right: -10%; animation-delay: 2s; }

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF6B35;
  opacity: 0.3;
  animation: particleFloat 6s infinite;
}
.p1 { top: 20%; left: 10%; animation-delay: 0s; }
.p2 { top: 60%; left: 5%; animation-delay: 2s; background: #7C3AED; }
.p3 { bottom: 10%; right: 20%; animation-delay: 4s; background: #10B981; }
.p4 { top: 30%; right: 5%; animation-delay: 1s; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
@keyframes particleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-30px) scale(1.5); opacity: 0.6; }
}

/* ─── STEPS / HOW IT WORKS ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.step-card {
  background: white;
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.04);
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.step-icon {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon svg {
  color: #FF6B35;
}

.step-card h3 {
  margin-bottom: 12px;
}
.step-card p {
  color: #6B7280;
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.7;
}
.step-link {
  color: #FF6B35;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.step-link:hover { gap: 8px; }

/* ─── BENEFITS GRID ─── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: #FFF8F0;
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,107,53,0.06);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.benefit-icon {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}
.benefit-icon svg {
  color: #FF6B35;
}

.benefit-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}
.benefit-card p {
  color: #6B7280;
  font-size: 15px;
  line-height: 1.7;
}

/* ─── SPLIT GRID ─── */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.fan-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.fan-feature .check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: #10B981;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.fan-feature strong {
  font-weight: 600;
}
.fan-feature div {
  font-size: 15px;
  color: #4B5563;
}

/* ─── PRICING ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-grid.two-cols {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  transition: all 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.pricing-card.featured {
  border-color: #FF6B35;
  box-shadow: 0 0 0 2px rgba(255,107,53,0.1), 0 12px 40px rgba(255,107,53,0.08);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #FF6B35;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #1A1A2E;
  margin: 20px 0;
}
.price span {
  font-size: 18px;
  font-weight: 500;
  color: #6B7280;
}

.pricing-features {
  list-style: none;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-features li {
  font-size: 15px;
  color: #4B5563;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

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

/* ─── STEPS FLOW ─── */
.steps-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.flow-step {
  background: white;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  flex: 1;
  min-width: 180px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}
.flow-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.flow-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FF6B35;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.flow-step h3 {
  font-size: 16px;
  margin-bottom: 8px;
}
.flow-step p {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
}

.flow-arrow {
  color: #FF6B35;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* ─── FORM WRAPPER ─── */
.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

/* ─── TESTIMONIALS ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-card {
  background: #FFF8F0;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(255,107,53,0.06);
}
.testimonial-avatar {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}
.testimonial-avatar svg {
  color: #FF6B35;
}
.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: #4B5563;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-author {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #FF6B35;
}

/* ─── TABS & FORMS ─── */
.tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 24px;
  border-radius: 12px;
  border: 2px solid #E5E7EB;
  background: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #6B7280;
}
.tab-btn:hover {
  border-color: #FF6B35;
  color: #FF6B35;
}
.tab-btn.active {
  background: #FF6B35;
  color: white;
  border-color: #FF6B35;
}

.forms-container {
  max-width: 700px;
  margin: 0 auto;
}

.lead-form {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.04);
}
.lead-form.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.lead-form h3 {
  margin-bottom: 8px;
}
.form-desc {
  color: #6B7280;
  margin-bottom: 28px;
  font-size: 15px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #1A1A2E;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #1A1A2E;
  background: white;
  transition: all 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #FF6B35;
  box-shadow: 0 0 0 3px rgba(255,107,53,0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9CA3AF;
}
.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
}

.form-note {
  font-size: 13px;
  color: #9CA3AF;
  text-align: center;
  margin-top: 12px;
}

/* Success message */
.success-message {
  text-align: center;
  padding: 60px 40px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.success-icon {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-message h3 {
  margin-bottom: 12px;
  color: #10B981;
}
.success-message p {
  color: #6B7280;
}

/* ─── BLOG PREVIEW GRID (landing) ─── */
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-preview-card {
  background: white;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.blog-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.blog-preview-card .post-category {
  display: inline-flex;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(255,107,53,0.08);
  color: #FF6B35;
  margin-bottom: 12px;
  width: fit-content;
}

.blog-preview-card .post-category.pillar-badge {
  background: rgba(124,58,237,0.1);
  color: #7C3AED;
}

.blog-preview-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-preview-card h3 a {
  color: #1A1A2E;
  transition: color 0.3s ease;
}

.blog-preview-card h3 a:hover {
  color: #FF6B35;
}

.blog-preview-card p {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}

.blog-preview-card .read-more {
  color: #FF6B35;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.blog-preview-card .read-more:hover {
  gap: 8px;
}

/* ─── BLOG (legacy, unused) ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.blog-image {
  height: 160px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 16px;
}

.blog-cat {
  background: rgba(255,255,255,0.9);
  color: #1A1A2E;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-body {
  padding: 24px;
}
.blog-date {
  font-size: 13px;
  color: #9CA3AF;
  display: block;
  margin-bottom: 8px;
}
.blog-body h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.blog-body p {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.7;
  margin-bottom: 16px;
}
.blog-link {
  color: #FF6B35;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* ─── FAQ ─── */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #1A1A2E;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s ease;
  gap: 16px;
}
.faq-question:hover {
  background: rgba(255,107,53,0.03);
}
.faq-question:focus-visible {
  outline: 3px solid #FF6B35;
  outline-offset: -3px;
  border-radius: 16px;
}

.faq-arrow {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #6B7280;
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer p {
  color: #6B7280;
  font-size: 15px;
  line-height: 1.7;
}

/* ─── CTA CENTER ─── */
.center-cta {
  text-align: center;
  margin-top: 40px;
}

/* ─── FOOTER ─── */
.footer {
  background: #1A1A2E;
  color: white;
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo { height: 36px; margin-bottom: 16px; }

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  transition: all 0.3s ease;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
}
.footer-social a:hover {
  background: rgba(255,107,53,0.3);
  color: white;
  transform: translateY(-2px);
}
.footer-social a:focus-visible {
  outline: 3px solid #FF6B35;
  outline-offset: 2px;
}

.footer-links h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 20px;
}
.footer-links a {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  margin-bottom: 12px;
  transition: color 0.3s ease;
  cursor: pointer;
}
.footer-links a:hover {
  color: #FF6B35;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 14px;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html {
    scroll-behavior: auto;
  }
  .navbar.scrolled {
    transition: none;
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .pricing-card.featured { transform: scale(1); }
  .steps-flow { flex-direction: column; }
  .flow-arrow { transform: rotate(90deg); }
}

@media (max-width: 768px) {
  .pricing-grid.two-cols {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-illustration { height: 300px; }
  .hero-stats { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-content { text-align: center; }
  .hero-subtitle { margin: 0 auto 32px; }

  .steps-grid,
  .benefits-grid,
  .pricing-grid,
  .testimonials-grid,
  .blog-grid,
  .blog-preview-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .steps-grid {
    max-width: 100%;
  }
  .testimonials-grid {
    max-width: 100%;
  }

  .split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .hero { padding: 120px 0 60px; }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 248, 240, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

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

  .form-grid {
    grid-template-columns: 1fr;
  }

  .lead-form { padding: 24px; }

  .floating-tag { display: none; }
  .particle { display: none; }

  .hero-stats { flex-wrap: wrap; gap: 20px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .tabs { flex-direction: column; align-items: stretch; }
  .tab-btn { text-align: center; }
}
