/* ============================================
   SiteReady.fr — Global Styles
   ============================================ */

:root {
  --primary: #4F46E5;
  --primary-dark: #3730A3;
  --primary-light: #818CF8;
  --accent: #F59E0B;
  --accent-dark: #D97706;
  --dark: #1E1B4B;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-500: #6B7280;
  --gray-300: #D1D5DB;
  --gray-100: #F3F4F6;
  --white: #FFFFFF;
  --success: #10B981;
  --danger: #EF4444;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,.25);
  --transition: all .3s cubic-bezier(.4,0,.2,1);
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-700);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

/* ---- Typography ---- */
h1, h2, h3, h4 { color: var(--dark); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin-bottom: 1rem; }
a { text-decoration: none; color: var(--primary); transition: var(--transition); }
a:hover { color: var(--primary-dark); }

/* ---- Layout ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-alt { background: var(--gray-100); }

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.section-header p { color: var(--gray-500); font-size: 1.1rem; margin-top: .75rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; border-radius: var(--radius); font-weight: 600;
  font-size: 1rem; border: none; cursor: pointer; transition: var(--transition);
  text-decoration: none;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-accent { background: var(--accent); color: var(--dark); }
.btn-accent:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.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-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn-sm { padding: .5rem 1.25rem; font-size: .875rem; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-300);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.navbar .container {
  display: flex; justify-content: space-between; align-items: center;
  height: 72px;
}
.navbar-brand {
  font-size: 1.5rem; font-weight: 800; color: var(--dark);
  display: flex; align-items: center; gap: .5rem;
}
.navbar-brand span { color: var(--primary); }
.navbar-brand .dot { color: var(--accent); }
.nav-links { display: flex; gap: 2rem; align-items: center; list-style: none; }
.nav-links a {
  color: var(--gray-700); font-weight: 500; font-size: .95rem;
  position: relative; padding: .25rem 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--primary);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }
.nav-cta .btn { padding: .6rem 1.5rem; }

/* Mobile menu toggle */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 30px; height: 24px; position: relative;
}
.nav-toggle span {
  display: block; width: 100%; height: 3px; background: var(--dark);
  border-radius: 3px; transition: var(--transition);
  position: absolute; left: 0;
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }
.nav-toggle.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 10rem 0 6rem;
  background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 50%, #C7D2FE 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(79,70,229,.15) 0%, transparent 70%);
}
.hero::after {
  content: ''; position: absolute; bottom: -30%; left: -10%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,.1) 0%, transparent 70%);
}
.hero .container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; position: relative; z-index: 1;
}
.hero-content h1 { margin-bottom: 1.5rem; }
.hero-content h1 .highlight {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content p { font-size: 1.2rem; color: var(--gray-500); margin-bottom: 2rem; max-width: 500px; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 2.5rem;
  padding-top: 2rem; border-top: 1px solid rgba(79,70,229,.2);
}
.hero-stat strong { display: block; font-size: 1.75rem; color: var(--dark); }
.hero-stat span { font-size: .85rem; color: var(--gray-500); }

.hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.hero-mockup {
  width: 100%; max-width: 520px;
  background: var(--white); border-radius: 16px;
  box-shadow: var(--shadow-xl); overflow: hidden;
  border: 1px solid var(--gray-300);
}
.mockup-bar {
  display: flex; align-items: center; gap: .5rem;
  padding: .75rem 1rem; background: var(--gray-100);
  border-bottom: 1px solid var(--gray-300);
}
.mockup-dot {
  width: 12px; height: 12px; border-radius: 50%;
}
.mockup-dot.red { background: #EF4444; }
.mockup-dot.yellow { background: #F59E0B; }
.mockup-dot.green { background: #10B981; }
.mockup-url {
  flex: 1; margin-left: .5rem; padding: .35rem .75rem;
  background: var(--white); border-radius: 6px; font-size: .75rem;
  color: var(--gray-500); border: 1px solid var(--gray-300);
}
.mockup-body { padding: 1.5rem; min-height: 280px; }
.mockup-body .mockup-header-block {
  height: 24px; width: 60%; background: var(--primary); border-radius: 4px; margin-bottom: 1rem; opacity: .8;
}
.mockup-body .mockup-text-block {
  height: 10px; background: var(--gray-300); border-radius: 3px; margin-bottom: .5rem;
}
.mockup-body .mockup-text-block:nth-child(3) { width: 85%; }
.mockup-body .mockup-text-block:nth-child(4) { width: 70%; }
.mockup-body .mockup-img-block {
  height: 120px; background: linear-gradient(135deg, var(--primary-light), var(--accent));
  border-radius: var(--radius-sm); margin: 1rem 0; opacity: .3;
}
.mockup-body .mockup-btn-block {
  height: 36px; width: 140px; background: var(--primary);
  border-radius: var(--radius-sm); opacity: .9;
}

/* Floating badge */
.hero-badge {
  position: absolute; top: 15%; right: -5%;
  background: var(--white); padding: .75rem 1.25rem;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: .75rem;
  animation: float 3s ease-in-out infinite;
}
.hero-badge-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--success), #34D399);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.25rem;
}
.hero-badge strong { font-size: .85rem; color: var(--dark); display: block; }
.hero-badge span { font-size: .75rem; color: var(--gray-500); }

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

/* ============================================
   PROBLEMS / PAIN POINTS
   ============================================ */
.problems { background: var(--dark); color: var(--white); padding: 4rem 0; }
.problems .section-header h2 { color: var(--white); }
.problems .section-header p { color: var(--gray-300); }
.problems-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.problem-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 2rem; text-align: center;
  transition: var(--transition);
}
.problem-card:hover {
  background: rgba(255,255,255,.1); transform: translateY(-4px);
}
.problem-icon {
  font-size: 2.5rem; margin-bottom: 1rem;
}
.problem-card h3 { color: var(--white); margin-bottom: .75rem; }
.problem-card p { color: var(--gray-300); font-size: .95rem; margin: 0; }
.problem-stat {
  display: inline-block; margin-top: .75rem; padding: .35rem .75rem;
  background: rgba(245,158,11,.15); color: var(--accent);
  border-radius: 20px; font-size: .85rem; font-weight: 600;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  position: relative;
}
.steps-grid::before {
  content: ''; position: absolute; top: 40px; left: 12.5%;
  width: 75%; height: 3px; background: var(--gray-300);
  z-index: 0;
}
.step-card { text-align: center; position: relative; z-index: 1; }
.step-number {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  font-size: 1.25rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; box-shadow: 0 4px 15px rgba(79,70,229,.3);
}
.step-card h3 { margin-bottom: .5rem; }
.step-card p { color: var(--gray-500); font-size: .9rem; margin: 0; }

/* ============================================
   PRICING
   ============================================ */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  align-items: start;
}
.pricing-card {
  background: var(--white); border: 2px solid var(--gray-300);
  border-radius: 16px; padding: 2.5rem 2rem;
  transition: var(--transition); position: relative;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.pricing-card.featured {
  border-color: var(--primary); transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}
.pricing-card.featured:hover { transform: scale(1.05) translateY(-8px); }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--dark); font-weight: 700;
  padding: .35rem 1.25rem; border-radius: 20px; font-size: .85rem;
  white-space: nowrap;
}
.pricing-name { font-size: 1.1rem; color: var(--gray-500); font-weight: 600; margin-bottom: .5rem; }
.pricing-amount {
  display: flex; align-items: baseline; gap: .25rem; margin-bottom: .25rem;
}
.pricing-amount .price { font-size: 3rem; font-weight: 800; color: var(--dark); }
.pricing-amount .currency { font-size: 1.5rem; font-weight: 700; color: var(--dark); }
.pricing-monthly { color: var(--gray-500); font-size: .9rem; margin-bottom: 1.5rem; }
.pricing-monthly strong { color: var(--primary); }
.pricing-desc { color: var(--gray-500); font-size: .9rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--gray-300); }
.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-features li {
  display: flex; align-items: center; gap: .75rem;
  padding: .5rem 0; font-size: .9rem; color: var(--gray-700);
}
.pricing-features li::before {
  content: '✓'; color: var(--success); font-weight: 700;
  width: 20px; height: 20px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.pricing-card .btn { width: 100%; justify-content: center; }

/* ============================================
   PORTFOLIO / EXAMPLES
   ============================================ */
.portfolio-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.portfolio-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition);
  background: var(--white);
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.portfolio-preview {
  height: 200px; position: relative; overflow: hidden;
}
.portfolio-preview img {
  width: 100%; height: 100%; object-fit: cover;
}
.portfolio-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.portfolio-placeholder.style-1 { background: linear-gradient(135deg, #667EEA, #764BA2); }
.portfolio-placeholder.style-2 { background: linear-gradient(135deg, #F093FB, #F5576C); }
.portfolio-placeholder.style-3 { background: linear-gradient(135deg, #4FACFE, #00F2FE); }
.portfolio-tag {
  position: absolute; top: .75rem; right: .75rem;
  background: var(--white); color: var(--primary); font-size: .75rem;
  font-weight: 600; padding: .25rem .75rem; border-radius: 20px;
}
.portfolio-info { padding: 1.25rem; }
.portfolio-info h3 { font-size: 1rem; margin-bottom: .25rem; }
.portfolio-info p { color: var(--gray-500); font-size: .85rem; margin: 0; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.testimonial-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow); border: 1px solid var(--gray-100);
}
.testimonial-stars { color: var(--accent); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text { font-style: italic; color: var(--gray-700); margin-bottom: 1.5rem; font-size: .95rem; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary-light); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem;
}
.testimonial-name { font-weight: 600; color: var(--dark); font-size: .9rem; }
.testimonial-role { font-size: .8rem; color: var(--gray-500); }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 750px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-300); border-radius: var(--radius);
  margin-bottom: 1rem; overflow: hidden;
  transition: var(--transition);
}
.faq-item.active { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary); }
.faq-question {
  width: 100%; padding: 1.25rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; cursor: pointer;
  font-size: 1rem; font-weight: 600; color: var(--dark);
  text-align: left; transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  font-size: 1.5rem; transition: var(--transition);
  color: var(--primary); flex-shrink: 0;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem; color: var(--gray-500); line-height: 1.7;
}

/* ============================================
   CTA
   ============================================ */
.cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white); text-align: center; padding: 5rem 0;
  position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.cta h2 { color: var(--white); margin-bottom: 1rem; }
.cta p { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta .btn-accent { font-size: 1.1rem; padding: 1rem 2.5rem; }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
}
.contact-info h3 { margin-bottom: 1.5rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gray-100); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-item strong { display: block; color: var(--dark); margin-bottom: .15rem; }
.contact-item span { color: var(--gray-500); font-size: .9rem; }

.contact-form { background: var(--white); padding: 2rem; border-radius: var(--radius); box-shadow: var(--shadow); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; color: var(--dark); margin-bottom: .4rem; font-size: .9rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .75rem 1rem; border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm); font-size: .95rem;
  font-family: inherit; transition: var(--transition);
  background: var(--white);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79,70,229,.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gray-900); color: var(--gray-300); padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
  margin-bottom: 2rem;
}
.footer-brand { font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: .75rem; }
.footer-brand span { color: var(--primary-light); }
.footer p { font-size: .9rem; color: var(--gray-500); }
.footer h4 { color: var(--white); margin-bottom: 1rem; font-size: 1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: var(--gray-500); font-size: .9rem; }
.footer-links a:hover { color: var(--primary-light); }
.footer-bottom {
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .85rem; color: var(--gray-500);
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--dark); color: var(--white);
  padding: 1rem 1.5rem; box-shadow: 0 -4px 20px rgba(0,0,0,.2);
  transform: translateY(100%); transition: transform .4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-content {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.cookie-content p { color: var(--gray-300); font-size: .85rem; margin: 0; }
.cookie-content a { color: var(--primary-light); }
.cookie-content .btn { white-space: nowrap; flex-shrink: 0; }

/* ============================================
   LEGAL MODAL
   ============================================ */
.legal-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,.6); backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; transition: all .3s ease;
}
.legal-overlay.visible { opacity: 1; visibility: visible; }
.legal-modal {
  position: fixed; top: 50%; left: 50%; z-index: 10001;
  transform: translate(-50%, -50%) scale(.95);
  width: 90%; max-width: 700px; max-height: 85vh;
  background: var(--white); border-radius: 16px;
  box-shadow: var(--shadow-xl); overflow: hidden;
  opacity: 0; visibility: hidden; transition: all .3s ease;
}
.legal-modal.visible { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }
.legal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--gray-100); border: none; cursor: pointer;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 1.5rem; color: var(--gray-700);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); z-index: 1;
}
.legal-close:hover { background: var(--gray-300); }
.legal-body {
  padding: 2.5rem; overflow-y: auto; max-height: 85vh;
}
.legal-body h2 { font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--dark); }
.legal-body h3 { font-size: 1.1rem; margin: 1.5rem 0 .5rem; color: var(--dark); }
.legal-body p { font-size: .9rem; color: var(--gray-700); line-height: 1.7; }
.legal-body ul { margin: .5rem 0 1rem 1.5rem; font-size: .9rem; color: var(--gray-700); line-height: 1.7; }
.legal-body em { color: var(--gray-500); }

/* ============================================
   FORM CHECKBOX (RGPD)
   ============================================ */
.form-checkbox label {
  display: flex; align-items: flex-start; gap: .5rem; cursor: pointer;
  font-size: .85rem; color: var(--gray-500); line-height: 1.5; font-weight: 400;
}
.form-checkbox input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  accent-color: var(--primary);
}
.form-checkbox a { color: var(--primary); text-decoration: underline; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content p { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { margin-top: 2rem; }
  .hero-badge { display: none; }
  .problems-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-8px); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--white); flex-direction: column;
    align-items: center; justify-content: center; gap: 2rem;
    transform: translateX(100%); transition: var(--transition);
  }
  .nav-links.active { transform: translateX(0); }
  .nav-toggle { display: block; }
  .section { padding: 3.5rem 0; }
  .hero { padding: 8rem 0 4rem; }
  .steps-grid { grid-template-columns: 1fr; max-width: 350px; margin: 0 auto; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cookie-content { flex-direction: column; text-align: center; }
  .legal-modal { width: 95%; }
  .legal-body { padding: 1.5rem; }
}
