/* ===================================
   GENTLE QUARTZ - GEOMETRIC STRUCTURED DESIGN
   Modern Digital Business Cards
   =================================== */

/* CSS RESET & NORMALIZE */
* {
  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', Arial, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

/* TYPOGRAPHY - Geometric & Structured */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #2C3E50;
  letter-spacing: -0.02em;
}

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 {
  font-size: 16px;
  margin-bottom: 16px;
  color: #2C3E50;
}

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

a:hover {
  color: #5A3D82;
}

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

li {
  margin-bottom: 8px;
}

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

/* CONTAINER - Structured Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* HEADER - Geometric Navigation */
header {
  background-color: #FFFFFF;
  border-bottom: 3px solid #E8DFF5;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  min-height: 80px;
}

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

.main-nav {
  display: none;
}

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #2C3E50;
  padding: 12px 20px;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 20px;
  right: 20px;
  height: 2px;
  background-color: #6B4C9A;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.main-nav a:hover {
  color: #6B4C9A;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

/* MOBILE MENU TOGGLE - Geometric Icon */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #6B4C9A;
  color: #FFFFFF;
  border: none;
  font-size: 24px;
  cursor: pointer;
  position: fixed;
  top: 16px;
  right: 24px;
  z-index: 1001;
  transition: all 0.3s ease;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.mobile-menu-toggle:hover {
  background-color: #5A3D82;
  transform: rotate(90deg);
}

/* MOBILE MENU OVERLAY - Structured Slide */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 80px 32px 32px;
  border-left: 4px solid #6B4C9A;
}

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

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: 2px solid #2C3E50;
  color: #2C3E50;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background-color: #6B4C9A;
  border-color: #6B4C9A;
  color: #FFFFFF;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #2C3E50;
  padding: 16px 20px;
  background-color: #F8F9FA;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: #E8DFF5;
  border-left-color: #6B4C9A;
  color: #6B4C9A;
  transform: translateX(8px);
}

/* BUTTONS - Angular Geometric Style */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  clip-path: polygon(8px 0%, 100% 0%, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0% 100%, 0% 8px);
}

.btn-primary {
  background-color: #6B4C9A;
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: #5A3D82;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(107, 76, 154, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #6B4C9A;
  border: 2px solid #6B4C9A;
  clip-path: none;
}

.btn-secondary:hover {
  background-color: #6B4C9A;
  color: #FFFFFF;
  transform: translateY(-2px);
}

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

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background-color: rgba(107, 76, 154, 0.05);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background-color: rgba(107, 76, 154, 0.08);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  z-index: 0;
}

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

.hero h1 {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #2C3E50;
}

.hero-subheadline {
  font-size: 18px;
  color: #2C3E50;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

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

.value-proposition,
.features,
.services-preview,
.how-it-works,
.testimonials,
.services-detailed,
.process,
.story,
.mission-vision,
.team,
.achievements,
.portfolio-showcase,
.results-metrics,
.pricing-table,
.pricing-additional,
.addons-list,
.payment-info,
.contact-methods,
.contact-form,
.office-info,
.legal-content,
.confirmation-message,
.next-steps,
.social-proof {
  padding: 60px 20px;
  position: relative;
}

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

/* GRID LAYOUTS - Flexbox Only */
.benefits-grid,
.features-grid,
.services-grid,
.steps-grid,
.testimonials-grid,
.pricing-grid,
.additional-grid,
.addons-grid,
.methods-grid,
.actions-grid,
.stats-grid,
.team-grid,
.metrics-grid,
.process-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

/* CARDS - Angular Geometric */
.benefit-card,
.feature-card,
.service-card,
.step-card,
.testimonial-card,
.pricing-card,
.additional-card,
.addon-item,
.method-card,
.action-card,
.stat-card,
.team-member,
.metric-card,
.process-step,
.project-card,
.service-detail {
  background-color: #FFFFFF;
  padding: 32px;
  border: 2px solid #E8DFF5;
  position: relative;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  transition: all 0.3s ease;
  margin-bottom: 24px;
  clip-path: polygon(16px 0%, 100% 0%, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0% 100%, 0% 16px);
}

.benefit-card::before,
.feature-card::before,
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: #6B4C9A;
  transition: width 0.3s ease;
}

.benefit-card:hover,
.feature-card:hover,
.service-card:hover,
.pricing-card:hover,
.action-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(107, 76, 154, 0.15);
  border-color: #6B4C9A;
}

.benefit-card:hover::before,
.feature-card:hover::before,
.service-card:hover::before {
  width: 100%;
}

/* FEATURE CARDS WITH ICONS */
.feature-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

/* STEP CARDS - Numbered */
.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background-color: #6B4C9A;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

/* TESTIMONIALS - High Contrast */
.testimonial-card {
  background-color: #F8F9FA;
  border-left: 4px solid #6B4C9A;
  flex: 1 1 100%;
  clip-path: none;
}

.quote {
  font-size: 18px;
  font-style: italic;
  color: #2C3E50;
  margin-bottom: 16px;
  line-height: 1.6;
}

.author {
  color: #2C3E50;
  font-weight: 600;
}

.author strong {
  color: #6B4C9A;
}

/* PRICING CARDS - Featured */
.pricing-card {
  flex: 1 1 calc(33.333% - 24px);
  text-align: center;
  position: relative;
}

.pricing-card.featured {
  border-color: #6B4C9A;
  border-width: 3px;
  transform: scale(1.05);
}

.pricing-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #6B4C9A;
  color: #FFFFFF;
  padding: 4px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #6B4C9A;
  margin: 24px 0;
}

.period {
  font-size: 16px;
  font-weight: 400;
  color: #2C3E50;
}

.description {
  font-size: 14px;
  color: #2C3E50;
  margin-bottom: 24px;
}

.pricing-card ul {
  list-style: none;
  margin: 24px 0;
  text-align: left;
}

.pricing-card li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #2C3E50;
}

.pricing-card li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #6B4C9A;
  font-weight: 700;
}

/* STATS - Bold Numbers */
.stat-number {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #6B4C9A;
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  font-size: 14px;
  color: #2C3E50;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-card,
.stat-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 32px;
  background-color: #F8F9FA;
  border: 2px solid #E8DFF5;
}

/* FORMS - Structured Input */
.form-wrapper {
  max-width: 700px;
  margin: 48px auto;
}

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

.form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2C3E50;
}

.input-field,
.select-field,
.textarea-field {
  width: 100%;
  padding: 16px;
  border: 2px solid #E8DFF5;
  background-color: #FFFFFF;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #2C3E50;
  transition: all 0.3s ease;
}

.input-field:focus,
.select-field:focus,
.textarea-field:focus {
  outline: none;
  border-color: #6B4C9A;
  box-shadow: 0 0 0 3px rgba(107, 76, 154, 0.1);
}

.textarea-field {
  resize: vertical;
  min-height: 120px;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  cursor: pointer;
}

.radio-group input[type="radio"],
.form-field input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #6B4C9A;
  cursor: pointer;
}

/* CTA SECTION - Strong Call to Action */
.cta-section {
  background: linear-gradient(135deg, #6B4C9A 0%, #5A3D82 100%);
  padding: 80px 20px;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.05);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-section p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-section .btn-primary {
  background-color: #FFFFFF;
  color: #6B4C9A;
}

.cta-section .btn-primary:hover {
  background-color: #E8DFF5;
}

.cta-section .btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.cta-section .btn-secondary:hover {
  background-color: #FFFFFF;
  color: #6B4C9A;
}

.trust-badges,
.trust-message {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  font-size: 14px;
  color: #FFFFFF;
}

.trust-badges span {
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* FOOTER - Structured */
footer {
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 60px 20px 24px;
  border-top: 4px solid #6B4C9A;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-bottom: 48px;
}

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

.footer-column h4 {
  color: #FFFFFF;
  margin-bottom: 16px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.footer-column p {
  color: #FFFFFF;
  font-size: 14px;
  line-height: 1.6;
}

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

.footer-nav a {
  color: #FFFFFF;
  font-size: 14px;
  padding: 4px 0;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #E8DFF5;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #FFFFFF;
  font-size: 14px;
}

/* COOKIE CONSENT BANNER - Fixed Bottom */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 24px;
  z-index: 999;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.show {
  transform: translateY(0);
}

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

.cookie-consent-text {
  flex: 1 1 300px;
  font-size: 14px;
}

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

.cookie-consent-buttons .btn {
  padding: 12px 24px;
  font-size: 14px;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1002;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.cookie-modal-content {
  background-color: #FFFFFF;
  padding: 48px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  clip-path: polygon(24px 0%, 100% 0%, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0% 100%, 0% 24px);
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: 2px solid #2C3E50;
  color: #2C3E50;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background-color: #6B4C9A;
  border-color: #6B4C9A;
  color: #FFFFFF;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  background-color: #F8F9FA;
  border-left: 4px solid #6B4C9A;
}

.cookie-category h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

/* SUCCESS ICON - Thank You Page */
.success-icon {
  width: 100px;
  height: 100px;
  background-color: #6B4C9A;
  color: #FFFFFF;
  font-size: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

/* LEGAL CONTENT - Readable */
.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.content-wrapper h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #E8DFF5;
}

.content-wrapper h3 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.last-updated {
  font-size: 14px;
  color: #2C3E50;
  font-style: italic;
}

.quick-links {
  margin-top: 48px;
  padding: 24px;
  background-color: #F8F9FA;
  border-left: 4px solid #6B4C9A;
}

.quick-links h3 {
  margin-bottom: 16px;
}

.quick-links ul {
  list-style: none;
  margin: 0;
}

.quick-links li {
  margin-bottom: 8px;
}

/* ADDITIONAL SPACING & ALIGNMENT */
.cta-center {
  text-align: center;
  margin-top: 48px;
}

.guarantee {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: #FFFFFF;
}

.privacy-note {
  font-size: 14px;
  color: #2C3E50;
  margin-top: 16px;
}

.duration {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 12px;
  background-color: #E8DFF5;
  color: #6B4C9A;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.category {
  font-size: 14px;
  color: #6B4C9A;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.results {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #E8DFF5;
  font-size: 14px;
}

/* PROCESS DETAILS */
.office-details p {
  margin-bottom: 12px;
  line-height: 1.8;
}

.contact-rodo {
  margin-top: 48px;
  padding: 32px;
  background-color: #F8F9FA;
  border-left: 4px solid #6B4C9A;
}

.settings-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.settings-list label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background-color: #F8F9FA;
  cursor: pointer;
  transition: all 0.3s ease;
}

.settings-list label:hover {
  background-color: #E8DFF5;
}

.settings-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

/* MISSION/VISION LAYOUT */
.mission-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
}

.mission-block,
.vision-block {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  padding: 32px;
  background-color: #F8F9FA;
  border-left: 4px solid #6B4C9A;
}

.values ul {
  list-style: none;
  margin-top: 24px;
}

.values li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  line-height: 1.6;
}

.values li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #6B4C9A;
  font-size: 20px;
  font-weight: 700;
}

/* TEXT-IMAGE SECTIONS - Aligned */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.text-image-section img {
  flex: 1 1 300px;
  max-width: 500px;
}

.text-image-section .text-content {
  flex: 1 1 300px;
}

/* RESPONSIVE DESIGN - Mobile First */
@media (min-width: 768px) {
  h1 { font-size: 56px; }
  h2 { font-size: 40px; }
  
  .main-nav {
    display: flex;
    gap: 8px;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .hero {
    padding: 120px 20px;
  }
  
  .hero h1 {
    font-size: 64px;
  }
  
  .benefit-card,
  .feature-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .service-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .step-card {
    flex: 1 1 calc(33.333% - 24px);
  }
  
  .pricing-card {
    flex: 1 1 calc(33.333% - 24px);
  }
  
  .stat-card,
  .stat-item {
    flex: 1 1 calc(25% - 24px);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 48px;
  }
  
  .benefit-card,
  .feature-card,
  .service-card {
    flex: 1 1 calc(25% - 24px);
  }
  
  .text-image-section {
    flex-wrap: nowrap;
  }
}

@media (max-width: 767px) {
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  
  .hero h1 { font-size: 36px; }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  .benefit-card,
  .feature-card,
  .service-card,
  .step-card,
  .pricing-card,
  .stat-card {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .text-image-section {
    flex-direction: column;
  }
  
  .mission-block,
  .vision-block {
    flex: 1 1 100%;
  }
  
  .cookie-consent-content {
    flex-direction: column;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-consent-buttons .btn {
    width: 100%;
  }
}

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

.hero-content,
.benefit-card,
.feature-card,
.service-card {
  animation: fadeIn 0.6s ease-out;
}

/* ACCESSIBILITY */
.btn:focus,
.input-field:focus,
.select-field:focus,
.textarea-field:focus {
  outline: 3px solid #6B4C9A;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  header,
  .mobile-menu-toggle,
  .mobile-menu,
  footer,
  .cta-section,
  .cookie-consent {
    display: none;
  }
}