/* ============================================
   SOFT PASTEL DESIGN STYLE - INVENRECLU NOTARIAT
   Dreamy, gentle, professional aesthetic
   ============================================ */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #4a4a4a;
  background: linear-gradient(135deg, #fef9f0 0%, #fff5f8 100%);
  overflow-x: hidden;
}

/* TYPOGRAPHY - SOFT PASTEL STYLE */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #8b7ba8;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 42px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(203, 169, 221, 0.1);
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #9d88b3;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #a094b7;
}

p {
  margin-bottom: 16px;
  color: #5a5a5a;
}

a {
  color: #c8a2d0;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #b08cc0;
  text-decoration: underline;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* BUTTONS - SOFT PASTEL STYLE */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(203, 169, 221, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, #d4a5d8 0%, #c8a2d0 100%);
  color: #ffffff;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #c294c6 0%, #b690be 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(203, 169, 221, 0.3);
  text-decoration: none;
}

.btn-secondary {
  background: linear-gradient(135deg, #f8e4d8 0%, #f5d4c8 100%);
  color: #8b7ba8;
  border: 2px solid #e8cfbd;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #f0d8c8 0%, #ecc4b8 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 207, 189, 0.3);
  text-decoration: none;
}

.btn-link {
  color: #c8a2d0;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-link:hover {
  color: #b08cc0;
  transform: translateX(5px);
}

/* HEADER - SOFT PASTEL */
header {
  background: linear-gradient(135deg, #fff9f4 0%, #fef5f8 100%);
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(203, 169, 221, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 50px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #8b7ba8;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.main-nav a:hover {
  background: linear-gradient(135deg, #f5e8f8 0%, #f8e8f0 100%);
  color: #b08cc0;
  text-decoration: none;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  background: linear-gradient(135deg, #d4a5d8 0%, #c8a2d0 100%);
  color: white;
  border: none;
  font-size: 24px;
  padding: 12px 18px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(203, 169, 221, 0.2);
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(203, 169, 221, 0.3);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(135deg, #fff9f4 0%, #fef5f8 100%);
  box-shadow: -4px 0 30px rgba(203, 169, 221, 0.2);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 80px 30px 30px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #f8e4d8 0%, #f5d4c8 100%);
  color: #8b7ba8;
  border: none;
  font-size: 28px;
  padding: 10px 16px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(232, 207, 189, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(90deg);
  box-shadow: 0 6px 20px rgba(232, 207, 189, 0.3);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav a {
  color: #8b7ba8;
  font-size: 18px;
  font-weight: 500;
  padding: 16px 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, #f8f3f8 0%, #faf5f8 100%);
  box-shadow: 0 2px 10px rgba(203, 169, 221, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}

.mobile-nav a:hover {
  background: linear-gradient(135deg, #f0e5f3 0%, #f5e8f0 100%);
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(203, 169, 221, 0.2);
  text-decoration: none;
}

/* HERO SECTION - SOFT PASTEL */
.hero {
  background: linear-gradient(135deg, #f8f0f8 0%, #fef5f8 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 165, 216, 0.1) 0%, transparent 70%);
  animation: float 20s infinite ease-in-out;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(30px, -30px) rotate(180deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 48px;
  color: #9d88b3;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(203, 169, 221, 0.1);
}

.hero-subtitle {
  font-size: 20px;
  color: #6a6a6a;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-indicators {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-indicators span {
  background: linear-gradient(135deg, #ffffff 0%, #fef9f4 100%);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  color: #8b7ba8;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(203, 169, 221, 0.15);
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #f8f0f8 0%, #fef5f8 100%);
  padding: 60px 20px 40px;
  text-align: center;
}

.breadcrumb {
  font-size: 14px;
  color: #9d88b3;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: #c8a2d0;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.trust-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.trust-badges span {
  background: linear-gradient(135deg, #ffffff 0%, #fef9f4 100%);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 13px;
  color: #8b7ba8;
  box-shadow: 0 2px 10px rgba(203, 169, 221, 0.1);
}

/* SECTIONS */
.section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #6a6a6a;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

section h2 {
  text-align: center;
  margin-bottom: 32px;
}

/* GRID LAYOUTS - FLEXBOX ONLY */
.service-grid,
.service-cards,
.benefits-grid,
.testimonial-grid,
.type-grid,
.category-grid,
.reasons-grid,
.poa-grid,
.industry-grid,
.methods-grid,
.contact-grid,
.trust-grid,
.team-grid,
.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

/* CARDS - SOFT PASTEL STYLE */
.service-card,
.benefit-card,
.testimonial-card,
.type-card,
.poa-card,
.industry-card,
.method-card,
.team-member,
.suggestion-card {
  background: linear-gradient(135deg, #ffffff 0%, #fef9f4 100%);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 30px rgba(203, 169, 221, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex: 1 1 300px;
  max-width: 350px;
  position: relative;
  margin-bottom: 24px;
}

.service-card::before,
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #d4a5d8 0%, #f8d4c8 100%);
  border-radius: 20px 20px 0 0;
}

.service-card:hover,
.benefit-card:hover,
.type-card:hover,
.poa-card:hover,
.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(203, 169, 221, 0.25);
}

.service-card img,
.benefit-card img,
.type-card img,
.poa-card img,
.industry-card img,
.method-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.service-card h3,
.benefit-card h3,
.type-card h3,
.poa-card h3 {
  color: #9d88b3;
  margin-bottom: 16px;
  font-size: 20px;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: #c8a2d0;
  margin: 16px 0;
}

/* TESTIMONIALS - SOFT PASTEL */
.testimonial-card {
  background: linear-gradient(135deg, #f8f3f8 0%, #fef9f4 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(203, 169, 221, 0.15);
  flex: 1 1 400px;
  max-width: 500px;
  position: relative;
  margin-bottom: 24px;
}

.testimonial-card p {
  color: #4a4a4a;
  font-style: italic;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  color: #8b7ba8;
  font-weight: 600;
}

.testimonial-author span {
  color: #9d88b3;
  font-size: 14px;
}

/* PROCESS STEPS */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 40px;
}

.process-step {
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
  position: relative;
  margin-bottom: 24px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #d4a5d8 0%, #c8a2d0 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(203, 169, 221, 0.3);
}

/* PRICING TABLES */
table,
.pricing-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 32px;
  border-collapse: collapse;
  background: linear-gradient(135deg, #ffffff 0%, #fef9f4 100%);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(203, 169, 221, 0.15);
}

table tr,
.pricing-table tr {
  border-bottom: 1px solid rgba(200, 162, 208, 0.2);
}

table tr:last-child {
  border-bottom: none;
}

table td {
  padding: 20px;
  color: #4a4a4a;
}

table td:first-child {
  font-weight: 600;
  color: #8b7ba8;
}

table td:last-child {
  text-align: right;
  color: #c8a2d0;
  font-weight: 700;
}

.note,
.highlight {
  text-align: center;
  font-size: 14px;
  color: #9d88b3;
  font-style: italic;
  margin-top: 16px;
}

.highlight {
  background: linear-gradient(135deg, #f5e8f8 0%, #f8e8f0 100%);
  padding: 16px;
  border-radius: 12px;
  font-weight: 600;
  color: #8b7ba8;
}

/* CTA SECTIONS */
.cta-section,
.cta-banner {
  background: linear-gradient(135deg, #f0e5f3 0%, #f8e8f0 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 25px;
  margin: 60px 20px;
  box-shadow: 0 10px 40px rgba(203, 169, 221, 0.2);
}

.cta-content h2 {
  color: #9d88b3;
  margin-bottom: 16px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.availability-note,
.availability-badge {
  margin-top: 20px;
  font-size: 14px;
  color: #8b7ba8;
  font-weight: 500;
}

/* TEXT SECTIONS */
.text-section {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 32px;
  background: linear-gradient(135deg, #ffffff 0%, #fef9f4 100%);
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(203, 169, 221, 0.1);
}

.text-section h2,
.text-section h3 {
  color: #9d88b3;
  margin-bottom: 16px;
}

.text-section ul {
  list-style: none;
  padding-left: 0;
}

.text-section li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #4a4a4a;
}

.text-section li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #c8a2d0;
  font-weight: 700;
}

/* REQUIREMENTS & LISTS */
.requirements-list {
  max-width: 700px;
  margin: 0 auto;
  padding-left: 0;
}

.requirements-list li,
.factors-list li {
  padding: 16px 0 16px 40px;
  position: relative;
  color: #4a4a4a;
  font-size: 16px;
}

.requirements-list li::before,
.factors-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #c8a2d0;
  font-weight: 700;
  font-size: 20px;
}

/* ERROR PAGES */
.error-hero {
  background: linear-gradient(135deg, #f8f0f8 0%, #fef5f8 100%);
  padding: 80px 20px;
  text-align: center;
}

.error-code {
  font-size: 120px;
  font-weight: 700;
  background: linear-gradient(135deg, #d4a5d8 0%, #f8d4c8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}

.error-message {
  font-size: 18px;
  color: #6a6a6a;
  max-width: 600px;
  margin: 0 auto;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #f8f0f8 0%, #fef5f8 100%);
  padding: 80px 20px;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #d4a5d8 0%, #c8a2d0 100%);
  color: white;
  font-size: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 10px 40px rgba(203, 169, 221, 0.3);
  animation: scaleIn 0.6s ease;
}

@keyframes scaleIn {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

/* CONTENT GRIDS */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.content-block {
  flex: 1 1 300px;
  background: linear-gradient(135deg, #ffffff 0%, #fef9f4 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(203, 169, 221, 0.1);
}

/* PAGE LINKS */
.page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}

.page-links a {
  background: linear-gradient(135deg, #f8e4d8 0%, #f5d4c8 100%);
  padding: 12px 24px;
  border-radius: 25px;
  color: #8b7ba8;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(232, 207, 189, 0.2);
}

.page-links a:hover {
  background: linear-gradient(135deg, #f0d8c8 0%, #ecc4b8 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 207, 189, 0.3);
  text-decoration: none;
}

/* CATEGORY & PAYMENT GRIDS */
.category,
.reason,
.trust-item {
  flex: 1 1 250px;
  background: linear-gradient(135deg, #ffffff 0%, #fef9f4 100%);
  padding: 24px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(203, 169, 221, 0.1);
  margin-bottom: 20px;
}

.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}

.payment-grid span {
  background: linear-gradient(135deg, #f8e4d8 0%, #f5d4c8 100%);
  padding: 12px 24px;
  border-radius: 25px;
  color: #8b7ba8;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(232, 207, 189, 0.15);
}

/* DIRECTIONS */
.directions {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
}

.direction-block {
  flex: 1 1 300px;
  background: linear-gradient(135deg, #ffffff 0%, #fef9f4 100%);
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(203, 169, 221, 0.1);
}

/* FOOTER - SOFT PASTEL */
footer {
  background: linear-gradient(135deg, #f0e5f3 0%, #f5e8f0 100%);
  padding: 60px 20px 30px;
  margin-top: 80px;
  box-shadow: 0 -4px 20px rgba(203, 169, 221, 0.1);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1 1 250px;
}

.footer-column h3 {
  color: #9d88b3;
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-column p {
  color: #6a6a6a;
  font-size: 14px;
  line-height: 1.8;
}

.footer-column nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column nav a {
  color: #8b7ba8;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-column nav a:hover {
  color: #c8a2d0;
  transform: translateX(5px);
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(200, 162, 208, 0.2);
  color: #9d88b3;
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #ffffff 0%, #fef9f4 100%);
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(203, 169, 221, 0.2);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.cookie-text {
  flex: 1 1 400px;
  color: #4a4a4a;
  font-size: 14px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 25px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #d4a5d8 0%, #c8a2d0 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(203, 169, 221, 0.2);
}

.cookie-btn-accept:hover {
  background: linear-gradient(135deg, #c294c6 0%, #b690be 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(203, 169, 221, 0.3);
}

.cookie-btn-reject,
.cookie-btn-settings {
  background: linear-gradient(135deg, #f8e4d8 0%, #f5d4c8 100%);
  color: #8b7ba8;
  box-shadow: 0 4px 15px rgba(232, 207, 189, 0.15);
}

.cookie-btn-reject:hover,
.cookie-btn-settings:hover {
  background: linear-gradient(135deg, #f0d8c8 0%, #ecc4b8 100%);
  transform: translateY(-2px);
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: linear-gradient(135deg, #ffffff 0%, #fef9f4 100%);
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(203, 169, 221, 0.3);
  max-width: 600px;
  width: 90%;
  z-index: 2000;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-modal.active {
  transform: translate(-50%, -50%) scale(1);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(157, 136, 179, 0.4);
  backdrop-filter: blur(5px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-category {
  background: linear-gradient(135deg, #f8f3f8 0%, #faf5f8 100%);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 16px;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: #8b7ba8;
  font-weight: 500;
}

.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #c8a2d0;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* HIDE DESKTOP MENU */
  .main-nav {
    display: none;
  }
  
  /* SHOW MOBILE MENU TOGGLE */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* HERO */
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 12px;
  }
  
  /* TYPOGRAPHY */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 26px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* CARDS */
  .service-card,
  .benefit-card,
  .testimonial-card,
  .type-card,
  .poa-card,
  .industry-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* SECTIONS */
  .section {
    padding: 40px 20px;
  }
  
  /* PROCESS STEPS */
  .process-steps {
    flex-direction: column;
  }
  
  .process-step {
    max-width: 100%;
  }
  
  /* CTA SECTIONS */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  /* FOOTER */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  /* COOKIE BANNER */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* ERROR PAGE */
  .error-code {
    font-size: 80px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .error-code {
    font-size: 60px;
  }
  
  .success-icon {
    width: 80px;
    height: 80px;
    font-size: 48px;
  }
}

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.view-all {
  text-align: center;
  margin-top: 40px;
}

/* SMOOTH SCROLLING */
html {
  scroll-behavior: smooth;
}

/* ACCESSIBILITY */
:focus {
  outline: 3px solid rgba(200, 162, 208, 0.5);
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 3px solid rgba(200, 162, 208, 0.5);
  outline-offset: 2px;
}

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

.service-card,
.benefit-card {
  animation: fadeIn 0.6s ease forwards;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .modal-overlay,
  header,
  footer {
    display: none;
  }
  
  body {
    background: white;
  }
  
  .container {
    max-width: 100%;
  }
}