/* ===== SOFT PASTEL DESIGN SYSTEM - RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --pastel-pink: #FFD6E8;
  --pastel-lavender: #E5D4ED;
  --pastel-mint: #D4F1E8;
  --pastel-peach: #FFE5D9;
  --pastel-sky: #D4E5F7;
  --pastel-cream: #FFF5E6;
  --soft-white: #FEFEFE;
  --gentle-gray: #E8E4E6;
  --text-soft: #7A6F7D;
  --text-primary: #5A4E5F;
  --text-dark: #3D3442;
  --shadow-soft: rgba(186, 167, 186, 0.15);
  --shadow-medium: rgba(186, 167, 186, 0.25);
  --gradient-dreamy: linear-gradient(135deg, var(--pastel-pink) 0%, var(--pastel-lavender) 50%, var(--pastel-mint) 100%);
  --gradient-subtle: linear-gradient(180deg, var(--soft-white) 0%, var(--pastel-cream) 100%);
}

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

body {
  font-family: 'Quicksand', 'Trebuchet MS', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--gradient-subtle);
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY - SOFT & DREAMY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Comfortaa', 'Quicksand', cursive;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
  letter-spacing: 0.5px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

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

h4 {
  font-size: 18px;
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
  color: var(--text-soft);
}

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--text-dark);
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
  color: var(--text-soft);
}

strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* ===== LAYOUT CONTAINERS ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===== HEADER & NAVIGATION - FLOATING DREAMY STYLE ===== */
header {
  background: var(--soft-white);
  box-shadow: 0 4px 20px var(--shadow-soft);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--pastel-lavender);
}

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

.logo a {
  display: flex;
  align-items: center;
}

.logo img {
  height: 48px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05) rotate(-2deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 0;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 500;
  color: var(--text-primary);
  transition: all 0.3s ease;
  display: inline-block;
}

.nav-menu a:hover {
  background: var(--pastel-pink);
  color: var(--text-dark);
  transform: translateY(-2px);
}

/* ===== MOBILE MENU - SOFT SLIDE ===== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: var(--soft-white);
  border: 2px solid var(--pastel-lavender);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  color: var(--text-primary);
  cursor: pointer;
  box-shadow: 0 4px 15px var(--shadow-soft);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: var(--pastel-pink);
  transform: scale(1.1) rotate(90deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--soft-white);
  box-shadow: -4px 0 30px var(--shadow-medium);
  z-index: 1000;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--pastel-lavender);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: var(--pastel-pink);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  display: block;
  padding: 16px 20px;
  background: var(--pastel-cream);
  border-radius: 15px;
  color: var(--text-primary);
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: center;
}

.mobile-nav a:hover {
  background: var(--pastel-pink);
  transform: translateX(5px);
  color: var(--text-dark);
}

/* ===== HERO SECTION - DREAMY GRADIENT ===== */
.hero {
  background: var(--gradient-dreamy);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 10px 40px var(--shadow-medium);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: var(--pastel-sky);
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(60px);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  color: var(--text-dark);
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px var(--shadow-soft);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-soft);
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.trust-indicators span {
  padding: 12px 24px;
  background: var(--soft-white);
  border-radius: 25px;
  font-weight: 500;
  color: var(--text-primary);
  box-shadow: 0 4px 15px var(--shadow-soft);
}

/* ===== HERO PAGE VARIANT ===== */
.hero-page {
  background: var(--gradient-dreamy);
  padding: 60px 20px 40px;
  margin-bottom: 40px;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 8px 30px var(--shadow-medium);
}

.hero-page h1 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 16px;
}

.hero-page .hero-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.breadcrumbs {
  margin-bottom: 24px;
  text-align: center;
  font-size: 14px;
  color: var(--text-soft);
}

.breadcrumbs a {
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: var(--text-dark);
}

/* ===== BUTTONS - SOFT ROUNDED ===== */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px var(--shadow-soft);
  text-decoration: none;
}

.btn-primary {
  background: var(--pastel-pink);
  color: var(--text-dark);
}

.btn-primary:hover {
  background: var(--pastel-lavender);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--shadow-medium);
}

.btn-secondary {
  background: var(--soft-white);
  color: var(--text-primary);
  border: 2px solid var(--pastel-lavender);
}

.btn-secondary:hover {
  background: var(--pastel-sky);
  border-color: var(--pastel-sky);
  transform: translateY(-3px);
}

/* ===== STATS SECTION ===== */
.stats {
  padding: 60px 20px;
  background: var(--soft-white);
  margin-bottom: 60px;
  border-radius: 30px;
  box-shadow: 0 8px 30px var(--shadow-soft);
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-around;
}

.stat-item {
  text-align: center;
  flex: 1 1 200px;
  padding: 24px;
  background: var(--pastel-cream);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px var(--shadow-medium);
}

.stat-item h3 {
  font-size: 48px;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-weight: 700;
}

.stat-item p {
  color: var(--text-soft);
  font-size: 14px;
  margin: 0;
}

/* ===== CARDS - FLOATING SOFT STYLE ===== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.card,
.service-card,
.tech-item,
.feature-item {
  background: var(--soft-white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 6px 25px var(--shadow-soft);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
  border: 2px solid var(--pastel-lavender);
}

.card:hover,
.service-card:hover,
.tech-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px var(--shadow-medium);
  border-color: var(--pastel-pink);
}

/* ===== SERVICES GRID ===== */
.services-preview {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: var(--text-soft);
}

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

.service-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card h3 {
  color: var(--text-dark);
  margin-bottom: 16px;
}

.service-card p {
  flex-grow: 1;
  margin-bottom: 16px;
}

.service-card .price {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 16px;
}

.service-card .badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--pastel-pink);
  color: var(--text-dark);
  padding: 6px 16px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}

/* ===== TECHNOLOGY SECTION ===== */
.technology {
  padding: 60px 20px;
  background: var(--pastel-cream);
  margin-bottom: 60px;
  border-radius: 30px;
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.tech-item {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  background: var(--soft-white);
}

/* ===== PROCESS STEPS ===== */
.process {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.step {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  background: var(--soft-white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 6px 20px var(--shadow-soft);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-medium);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--gradient-dreamy);
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.step p {
  margin: 0;
}

.timeline {
  text-align: center;
  padding: 20px;
  background: var(--pastel-lavender);
  border-radius: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

/* ===== TESTIMONIALS - SOFT CARDS ===== */
.testimonials {
  padding: 60px 20px;
  background: var(--pastel-mint);
  margin-bottom: 60px;
  border-radius: 30px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.testimonial-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background: var(--soft-white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 6px 20px var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 2px solid var(--pastel-lavender);
}

.testimonial-card p {
  font-style: italic;
  color: var(--text-primary);
  flex-grow: 1;
  margin: 0;
}

.testimonial-card .author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
}

.testimonial-card .author strong {
  color: var(--text-dark);
  font-weight: 600;
}

.testimonial-card .author span {
  font-size: 14px;
  color: var(--text-soft);
}

.testimonial-card .rating {
  color: var(--pastel-pink);
  font-size: 20px;
  margin-top: 8px;
}

/* ===== CTA SECTIONS ===== */
.cta-final,
.cta-section {
  padding: 60px 20px;
  background: var(--gradient-dreamy);
  margin-bottom: 60px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 10px 40px var(--shadow-medium);
}

.cta-final h2,
.cta-section h2 {
  color: var(--text-dark);
  margin-bottom: 16px;
}

.benefits-list {
  list-style: none;
  margin: 32px auto;
  max-width: 500px;
  text-align: left;
}

.benefits-list li {
  padding: 12px 16px;
  margin-bottom: 8px;
  background: var(--soft-white);
  border-radius: 15px;
  color: var(--text-primary);
  box-shadow: 0 4px 15px var(--shadow-soft);
}

.benefits-list li::before {
  content: '✓ ';
  color: var(--text-dark);
  font-weight: 700;
  margin-right: 8px;
}

.availability,
.contact-info {
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-soft);
}

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

.gray-bg {
  background: var(--pastel-cream);
  border-radius: 30px;
}

.text-section {
  max-width: 800px;
  margin: 0 auto 40px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* ===== FORMS - SOFT & ROUNDED ===== */
.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: var(--soft-white);
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 8px 30px var(--shadow-soft);
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 16px;
  border: 2px solid var(--pastel-lavender);
  border-radius: 15px;
  font-family: inherit;
  font-size: 16px;
  color: var(--text-primary);
  background: var(--soft-white);
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--pastel-pink);
  box-shadow: 0 0 0 4px rgba(255, 214, 232, 0.2);
}

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

.form-consent {
  margin-bottom: 24px;
}

.form-consent label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--text-soft);
  cursor: pointer;
}

.form-consent input[type="checkbox"] {
  margin-top: 4px;
}

.form-note {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 24px;
}

.guarantee {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-soft);
  text-align: center;
}

/* ===== FOOTER - SOFT & DREAMY ===== */
footer {
  background: var(--soft-white);
  padding: 60px 20px 30px;
  margin-top: 60px;
  border-top: 3px solid var(--pastel-lavender);
  box-shadow: 0 -4px 20px var(--shadow-soft);
}

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

.footer-section {
  flex: 1 1 200px;
}

.footer-section h3,
.footer-section h4 {
  color: var(--text-dark);
  margin-bottom: 16px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: var(--text-soft);
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--text-dark);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid var(--gentle-gray);
}

.footer-bottom p {
  font-size: 14px;
  color: var(--text-soft);
  margin: 0;
}

/* ===== COOKIE CONSENT BANNER - FLOATING ===== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--soft-white);
  padding: 24px;
  box-shadow: 0 -4px 25px var(--shadow-medium);
  z-index: 999;
  display: none;
  border-top: 3px solid var(--pastel-lavender);
}

#cookie-banner.show {
  display: block;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

.cookie-text {
  flex: 1 1 300px;
  color: var(--text-primary);
  font-size: 14px;
}

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

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

.cookie-accept {
  background: var(--pastel-pink);
  color: var(--text-dark);
}

.cookie-accept:hover {
  background: var(--pastel-lavender);
  transform: translateY(-2px);
}

.cookie-reject {
  background: var(--gentle-gray);
  color: var(--text-primary);
}

.cookie-reject:hover {
  background: var(--pastel-sky);
}

.cookie-settings {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--pastel-lavender);
}

.cookie-settings:hover {
  background: var(--pastel-cream);
}

/* ===== COOKIE MODAL ===== */
#cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(62, 52, 66, 0.7);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: var(--soft-white);
  border-radius: 25px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px var(--shadow-medium);
  border: 3px solid var(--pastel-lavender);
}

.cookie-modal-content h3 {
  margin-bottom: 24px;
  color: var(--text-dark);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: var(--pastel-cream);
  border-radius: 15px;
}

.cookie-category label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
}

.cookie-category p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--text-soft);
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gentle-gray);
  border-radius: 25px;
  transition: 0.3s;
}

.cookie-slider:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--soft-white);
  border-radius: 50%;
  transition: 0.3s;
}

input:checked + .cookie-slider {
  background: var(--pastel-pink);
}

input:checked + .cookie-slider:before {
  transform: translateX(24px);
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  justify-content: flex-end;
}

/* ===== SPECIAL SECTIONS ===== */
.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}

.timeline-item {
  flex: 1 1 150px;
  padding: 20px;
  background: var(--soft-white);
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 15px var(--shadow-soft);
  border-left: 4px solid var(--pastel-pink);
}

.timeline-item strong {
  display: block;
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.mission-vision-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.mission-box,
.vision-box {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  padding: 32px;
  background: var(--soft-white);
  border-radius: 20px;
  box-shadow: 0 6px 20px var(--shadow-soft);
  border: 2px solid var(--pastel-lavender);
}

.values {
  background: var(--pastel-mint);
  padding: 32px;
  border-radius: 20px;
  margin-top: 32px;
}

.values ul {
  list-style: none;
  margin: 16px 0 0 0;
}

.values li {
  padding: 12px 0;
  border-bottom: 1px solid var(--gentle-gray);
}

.values li:last-child {
  border-bottom: none;
}

/* ===== ACHIEVEMENTS & STATS GRIDS ===== */
.achievements-grid,
.team-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-around;
  margin-top: 40px;
}

.achievement-item,
.stat-box {
  flex: 1 1 200px;
  text-align: center;
  padding: 32px;
  background: var(--soft-white);
  border-radius: 20px;
  box-shadow: 0 6px 20px var(--shadow-soft);
  transition: all 0.3s ease;
}

.achievement-item:hover,
.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-medium);
}

.achievement-item h3,
.stat-box h3 {
  font-size: 48px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.achievement-item p,
.stat-box p {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.achievement-item span {
  font-size: 14px;
  color: var(--text-soft);
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 40px 20px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--soft-white);
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 8px 30px var(--shadow-soft);
}

.legal-content section {
  margin-bottom: 32px;
}

.legal-content h2 {
  color: var(--text-dark);
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content h3 {
  color: var(--text-primary);
  margin-top: 24px;
  margin-bottom: 12px;
}

.update-date {
  color: var(--text-soft);
  font-size: 14px;
  text-align: center;
  margin-bottom: 32px;
}

/* ===== THANK YOU PAGE ===== */
.thank-you-page {
  padding: 80px 20px;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
  background: var(--soft-white);
  padding: 60px 40px;
  border-radius: 30px;
  box-shadow: 0 10px 40px var(--shadow-medium);
  border: 3px solid var(--pastel-lavender);
}

.thank-you-content h1 {
  color: var(--text-dark);
  margin-bottom: 24px;
}

.thank-you-content .message {
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.thank-you-content .sub-message {
  color: var(--text-soft);
  margin-bottom: 32px;
}

.next-steps {
  text-align: left;
  margin: 32px 0;
  padding: 24px;
  background: var(--pastel-cream);
  border-radius: 15px;
}

.next-steps ul {
  margin: 16px 0 0 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 18px;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .nav-menu {
    display: none;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .trust-indicators {
    flex-direction: column;
    align-items: stretch;
  }
  
  .stats-grid,
  .services-grid,
  .tech-grid,
  .testimonials-grid,
  .achievements-grid {
    flex-direction: column;
  }
  
  .service-card,
  .tech-item,
  .testimonial-card,
  .achievement-item,
  .stat-box {
    flex: 1 1 100%;
  }
  
  .text-image-section {
    flex-direction: column;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .form-wrapper {
    padding: 24px;
  }
  
  .legal-content {
    padding: 24px;
  }
  
  .mission-box,
  .vision-box {
    flex: 1 1 100%;
  }
}

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

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

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

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

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

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

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

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

/* ===== PREVENT OVERLAPS ===== */
section {
  position: relative;
  z-index: 1;
}

.card-container > *,
.services-grid > *,
.testimonials-grid > * {
  position: relative;
}

/* ===== ACCESSIBILITY ===== */
*:focus {
  outline: 2px solid var(--pastel-pink);
  outline-offset: 2px;
}

button:focus,
.btn:focus {
  outline: 3px solid var(--pastel-lavender);
  outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  .cta-buttons {
    display: none;
  }
}