/* ===================================
   GEMMI MEBLE - MODERN BOLD DESIGN
   Custom Furniture Manufacturer
   =================================== */

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style-position: inside;
}

/* TYPOGRAPHY - MODERN BOLD STYLE */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 24px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 40px;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 24px;
}

p {
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 1.7;
  color: #2c2c2c;
}

strong {
  font-weight: 700;
  color: #000000;
}

/* COLOR SYSTEM - BOLD & VIBRANT */
:root {
  --primary: #FF6B35;
  --primary-dark: #E85A2A;
  --secondary: #2C3E50;
  --accent: #FFD700;
  --text-dark: #000000;
  --text-body: #2c2c2c;
  --bg-light: #F8F9FA;
  --bg-white: #FFFFFF;
  --border: #E0E0E0;
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-strong: rgba(0, 0, 0, 0.2);
}

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

/* HEADER */
header {
  background-color: var(--bg-white);
  border-bottom: 3px solid var(--primary);
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 12px var(--shadow);
}

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

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

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

.main-nav a {
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 0;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
  transform: translateY(-2px);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background-color: var(--primary);
  color: white;
  border: none;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 4px 16px var(--shadow-strong);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: var(--primary-dark);
  transform: scale(1.05);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--secondary);
  z-index: 999;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 24px var(--shadow-strong);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  color: white;
  border: 2px solid white;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  font-size: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: white;
  font-size: 20px;
  font-weight: 700;
  padding: 16px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--accent);
  padding-left: 16px;
}

/* BUTTONS - BOLD GEOMETRIC STYLE */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 3px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 200px;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}

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

.btn-link {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 0;
  border-bottom: 3px solid var(--primary);
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-link:hover {
  color: var(--primary-dark);
  border-bottom-color: var(--primary-dark);
  transform: translateX(8px);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #2C3E50 0%, #34495e 100%);
  color: white;
  padding: 100px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background-color: var(--primary);
  opacity: 0.1;
  transform: rotate(45deg);
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: white;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subheadline {
  font-size: 24px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.trust-indicators {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.trust-indicators span {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, #34495e 100%);
  color: white;
  padding: 80px 20px 60px;
  margin-bottom: 60px;
}

.breadcrumbs {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.7);
}

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

.breadcrumbs span {
  color: white;
}

.breadcrumbs span::before {
  content: '/';
  margin-right: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.page-hero h1 {
  color: white;
  margin-bottom: 16px;
}

.page-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

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

.value-proposition,
.services-overview,
.process-preview,
.testimonials,
.story,
.team,
.values,
.craftsmanship,
.services-intro,
.services-detailed,
.warranty,
.portfolio-intro,
.portfolio-projects,
.process-intro,
.process-steps-detailed,
.quality-assurance,
.contact-methods,
.contact-form-section,
.showroom-info,
.service-area,
.consultation-booking,
.legal-content,
.thank-you-hero,
.next-steps,
.contact-confirmation,
.while-waiting,
.social-proof,
.preparation-tips,
.back-navigation,
.thank-you-content {
  margin-bottom: 60px;
  padding: 60px 20px;
}

.value-proposition {
  background-color: var(--bg-light);
}

.services-overview {
  background-color: white;
}

.process-preview {
  background-color: var(--bg-light);
}

.testimonials {
  background: linear-gradient(135deg, #2C3E50 0%, #34495e 100%);
  color: white;
}

.cta-banner {
  background-color: var(--primary);
  color: white;
  padding: 80px 20px;
  margin-bottom: 0;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 80px 20px;
  margin-bottom: 60px;
  text-align: center;
}

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

.cta-section p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 20px;
  margin-bottom: 32px;
}

.section-cta {
  margin-top: 48px;
  text-align: center;
}

/* GRIDS - USING FLEXBOX ONLY */
.benefits-grid,
.services-grid,
.values-grid,
.team-grid,
.testimonials-grid,
.contact-grid,
.info-grid,
.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.benefit-card,
.service-card,
.value-card,
.team-member,
.testimonial-card,
.contact-method,
.info-item,
.suggestion-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background-color: white;
  padding: 32px;
  border: 3px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 0;
}

.benefit-card:hover,
.service-card:hover,
.value-card:hover,
.suggestion-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 12px 32px var(--shadow-strong);
}

.benefit-card h3,
.service-card h3,
.value-card h3,
.team-member h3 {
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 800;
}

.service-card .price {
  font-size: 28px;
  font-weight: 800;
  color: var(--secondary);
  margin: 16px 0;
}

/* PROCESS STEPS */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.step {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background-color: white;
  padding: 32px;
  border-left: 6px solid var(--primary);
  box-shadow: 0 4px 12px var(--shadow);
  position: relative;
  margin-bottom: 0;
}

.step-number {
  display: inline-block;
  width: 64px;
  height: 64px;
  background-color: var(--primary);
  color: white;
  font-size: 32px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.step h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

/* TESTIMONIALS */
.testimonial-card {
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--text-body);
  padding: 32px;
  border: none;
  border-left: 6px solid var(--accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.testimonial-card p {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 24px;
  color: var(--text-body);
}

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

.testimonial-author strong {
  font-size: 18px;
  color: var(--text-dark);
  font-weight: 700;
}

.testimonial-author span {
  font-size: 14px;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rating-display {
  text-align: center;
  margin-top: 48px;
  padding: 24px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0;
}

.rating-display strong {
  display: block;
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 8px;
}

.rating-display span {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

/* STATS */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-top: 48px;
  justify-content: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 150px;
}

.stat-item strong {
  font-size: 48px;
  color: var(--primary);
  font-weight: 800;
  line-height: 1;
}

.stat-item span {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--text-body);
  text-align: center;
}

.testimonials .stat-item strong {
  color: var(--accent);
}

.testimonials .stat-item span {
  color: white;
}

/* CONTENT SECTIONS */
.content-wrapper,
.content-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.highlight {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  padding: 24px;
  background-color: rgba(255, 107, 53, 0.1);
  border-left: 6px solid var(--primary);
  margin: 32px 0;
}

.features-list {
  margin-top: 32px;
}

.features-list li {
  padding: 16px 0 16px 40px;
  border-bottom: 2px solid var(--border);
  font-size: 18px;
  position: relative;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 800;
  font-size: 24px;
}

/* SERVICES DETAILED */
.service-item {
  background-color: white;
  padding: 48px;
  margin-bottom: 40px;
  border: 3px solid var(--border);
  transition: all 0.3s ease;
}

.service-item:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px var(--shadow);
}

.service-item h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.service-item .price {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin: 16px 0 24px;
}

.service-item ul {
  margin: 32px 0;
  padding-left: 24px;
}

.service-item ul li {
  margin-bottom: 12px;
  padding-left: 16px;
  position: relative;
}

.service-item ul li::before {
  content: '■';
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* PORTFOLIO */
.project-card {
  background-color: white;
  padding: 40px;
  margin-bottom: 40px;
  border-left: 6px solid var(--primary);
  box-shadow: 0 4px 12px var(--shadow);
}

.project-category {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.project-specs {
  font-size: 16px;
  color: #666;
  margin: 16px 0;
  font-weight: 700;
}

blockquote {
  background-color: var(--bg-light);
  padding: 24px;
  margin: 24px 0;
  border-left: 6px solid var(--accent);
  font-style: italic;
  font-size: 18px;
  color: var(--text-body);
}

/* PROCESS DETAILED */
.process-step {
  background-color: white;
  padding: 40px;
  margin-bottom: 40px;
  border: 3px solid var(--border);
  transition: all 0.3s ease;
}

.process-step:hover {
  border-color: var(--primary);
  transform: translateX(8px);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.step-header .step-number {
  margin-bottom: 0;
}

.step-header h3 {
  flex: 1;
  margin-bottom: 0;
  font-size: 28px;
}

.duration {
  background-color: var(--bg-light);
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
}

/* CONTACT FORM */
.form-wrapper {
  max-width: 700px;
  margin: 48px auto 0;
  background-color: white;
  padding: 48px;
  border: 3px solid var(--border);
  box-shadow: 0 4px 12px var(--shadow);
}

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

.form-field label {
  display: block;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.input-placeholder {
  height: 50px;
  border: 3px solid var(--border);
  background-color: var(--bg-light);
  transition: all 0.3s ease;
}

.form-field:focus-within .input-placeholder {
  border-color: var(--primary);
  background-color: white;
}

.form-field:has(label:contains('Wiadomość')) .input-placeholder {
  height: 150px;
}

.checkbox-placeholder {
  padding: 16px;
  border: 3px solid var(--border);
  background-color: var(--bg-light);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.checkbox-placeholder:hover {
  border-color: var(--primary);
  background-color: white;
}

.form-actions {
  margin-top: 32px;
  text-align: center;
}

.form-note {
  margin-top: 24px;
  font-size: 14px;
  color: #666;
  text-align: center;
}

.form-note a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 100px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.success-icon {
  width: 120px;
  height: 120px;
  background-color: white;
  color: var(--primary);
  font-size: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.thank-you-hero h1 {
  color: white;
  margin-bottom: 16px;
}

.thank-you-hero .subtitle {
  font-size: 24px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.95);
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.step-item {
  flex: 1 1 calc(50% - 16px);
  min-width: 250px;
  background-color: var(--bg-light);
  padding: 32px;
  text-align: center;
  border: 3px solid var(--border);
  transition: all 0.3s ease;
}

.step-item:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px var(--shadow);
}

.step-item .step-number {
  margin: 0 auto 16px;
}

/* CTA BUTTONS CONTAINER */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  color: white;
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 20px;
  margin-bottom: 32px;
}

.trust-message {
  margin-top: 32px;
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

/* LEGAL PAGES */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.legal-content h2 {
  margin-top: 48px;
  margin-bottom: 24px;
  color: var(--primary);
}

.legal-content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 24px;
}

.legal-content ul,
.legal-content ol {
  margin: 24px 0;
  padding-left: 32px;
}

.legal-content li {
  margin-bottom: 12px;
  line-height: 1.8;
}

/* FOOTER */
footer {
  background-color: var(--secondary);
  color: white;
  padding: 60px 20px 32px;
  margin-top: 60px;
}

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

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

.footer-section h3 {
  color: var(--accent);
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 800;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.8;
}

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: var(--accent);
  padding-left: 8px;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--secondary);
  color: white;
  padding: 24px;
  box-shadow: 0 -4px 20px var(--shadow-strong);
  z-index: 1000;
  display: none;
  border-top: 4px solid var(--primary);
}

#cookie-banner.show {
  display: block;
}

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

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border: 2px solid white;
  background-color: transparent;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background-color: var(--primary);
  border-color: var(--primary);
}

.cookie-btn-accept:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.cookie-btn:hover {
  background-color: white;
  color: var(--secondary);
}

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

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

.cookie-modal-content {
  background-color: white;
  max-width: 600px;
  width: 100%;
  padding: 48px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  border: 4px solid var(--primary);
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--text-dark);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

.cookie-category {
  padding: 24px;
  margin-bottom: 20px;
  background-color: var(--bg-light);
  border-left: 4px solid var(--primary);
}

.cookie-category h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--secondary);
}

.cookie-category p {
  font-size: 14px;
  margin-bottom: 12px;
  color: var(--text-body);
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-toggle label {
  font-weight: 700;
  cursor: pointer;
  color: var(--text-dark);
}

.cookie-modal-actions {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 32px; }
  h3 { font-size: 24px; }
  h4 { font-size: 20px; }
  p { font-size: 16px; }

  /* Header */
  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu {
    display: block;
  }

  /* Hero */
  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-subheadline {
    font-size: 18px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 20px;
  }

  /* Sections */
  .section {
    padding: 40px 20px;
    margin-bottom: 40px;
  }

  /* Grids */
  .benefits-grid,
  .services-grid,
  .values-grid,
  .team-grid,
  .testimonials-grid,
  .process-steps,
  .contact-grid,
  .info-grid,
  .suggestions-grid,
  .steps-grid {
    flex-direction: column;
    gap: 24px;
  }

  .benefit-card,
  .service-card,
  .value-card,
  .team-member,
  .testimonial-card,
  .step,
  .contact-method,
  .info-item,
  .suggestion-card,
  .step-item {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* Stats */
  .stats-row {
    flex-direction: column;
    gap: 32px;
  }

  /* Buttons */
  .btn {
    width: 100%;
    min-width: auto;
  }

  .cta-buttons {
    flex-direction: column;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  /* Form */
  .form-wrapper {
    padding: 32px 24px;
  }

  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  /* Modal */
  .cookie-modal-content {
    padding: 32px 24px;
  }

  /* Service Items */
  .service-item,
  .project-card,
  .process-step {
    padding: 32px 24px;
  }

  /* Step Header */
  .step-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }

  .benefits-grid,
  .services-grid,
  .values-grid,
  .team-grid {
    gap: 24px;
  }

  .benefit-card,
  .service-card,
  .value-card,
  .team-member {
    flex: 1 1 calc(50% - 12px);
  }
}

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

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.mb-4 { margin-bottom: 32px !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.mt-4 { margin-top: 32px !important; }

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

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal,
  .cta-banner,
  .cta-section {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  a {
    text-decoration: underline;
  }
}

/* ACCESSIBILITY */
*:focus {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

.btn:focus,
.mobile-menu-toggle:focus,
.mobile-menu-close:focus {
  outline: 3px solid var(--accent);
}

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

/* SELECTION */
::selection {
  background-color: var(--primary);
  color: white;
}

::-moz-selection {
  background-color: var(--primary);
  color: white;
}