/* ===================================
   STRONDIŠPÍ - MONOCHROME SOPHISTICATED
   Modern Professional Design System
=================================== */

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

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

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

h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

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

p {
  margin-bottom: 20px;
  color: #2a2a2a;
}

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

ul {
  list-style: none;
}

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

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

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

/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #000000;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: #000000;
  color: #ffffff;
}

.btn-primary:hover {
  background: #333333;
  border-color: #333333;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background: transparent;
  color: #000000;
  border: 2px solid #000000;
}

.btn-secondary:hover {
  background: #000000;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

button {
  font-family: inherit;
  border: none;
  cursor: pointer;
}

/* HEADER */
header {
  background: #ffffff;
  border-bottom: 2px solid #000000;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

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

.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #000000;
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #000000;
  color: #ffffff;
  width: 50px;
  height: 50px;
  font-size: 24px;
  border: none;
  cursor: pointer;
  border-radius: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: #ffffff;
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  border-left: 2px solid #000000;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #000000;
  color: #ffffff;
  width: 40px;
  height: 40px;
  font-size: 24px;
  border: none;
  cursor: pointer;
}

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

.mobile-nav a {
  padding: 16px;
  font-size: 18px;
  font-weight: 500;
  color: #1a1a1a;
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: #f5f5f5;
  padding-left: 24px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: 100px 20px 80px;
  border-bottom: 3px solid #000000;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(0, 0, 0, 0.03);
  transform: rotate(45deg);
}

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #000000;
}

.hero-subheadline {
  font-size: 20px;
  line-height: 1.6;
  color: #2a2a2a;
  margin-bottom: 40px;
}

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

.trust-badges {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.trust-badges span {
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* PAGE HERO */
.page-hero {
  background: #f5f5f5;
  padding: 80px 20px 60px;
  border-bottom: 2px solid #000000;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 24px;
  color: #666666;
}

.breadcrumbs a {
  color: #666666;
  text-decoration: underline;
}

/* SECTIONS */
section {
  padding: 80px 20px;
  position: relative;
}

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

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #4a4a4a;
  max-width: 700px;
  margin: -16px auto 48px;
}

/* VALUE PROPOSITION */
.value-proposition {
  background: #ffffff;
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 56px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 64px;
}

.benefit-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  padding: 32px;
  background: #f8f8f8;
  border: 2px solid #000000;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #000000;
  transition: height 0.3s ease;
  z-index: 0;
}

.benefit-card:hover::before {
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.benefit-card:hover h3,
.benefit-card:hover p {
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.benefit-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  filter: invert(0);
  transition: filter 0.3s ease;
  position: relative;
  z-index: 1;
}

.benefit-card:hover img {
  filter: invert(1);
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.benefit-card p {
  font-size: 15px;
  color: #4a4a4a;
  transition: color 0.3s ease;
}

.statistics {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  padding: 48px 0;
  border-top: 2px solid #000000;
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-item strong {
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  display: block;
}

.stat-item span {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #4a4a4a;
}

/* SERVICES OVERVIEW */
.services-overview {
  background: #f5f5f5;
}

.services-overview h2 {
  text-align: center;
  margin-bottom: 48px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px;
  border: 2px solid #000000;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.service-card img {
  width: 56px;
  height: 56px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

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

.service-card .price {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  padding-top: 16px;
  border-top: 2px solid #e0e0e0;
}

.services-overview > .container > .btn-primary {
  display: block;
  margin: 0 auto;
  width: fit-content;
}

/* SERVICES DETAILED */
.services-detailed {
  background: #ffffff;
}

.service-detail-card {
  background: #f8f8f8;
  padding: 48px;
  margin-bottom: 40px;
  border: 2px solid #000000;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-detail-card img {
  width: 80px;
  height: 80px;
}

.service-detail-card h2 {
  margin-bottom: 16px;
}

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

.features-list li {
  padding-left: 28px;
  position: relative;
  color: #2a2a2a;
}

.features-list li::before {
  content: '■';
  position: absolute;
  left: 0;
  color: #000000;
  font-size: 12px;
}

.price-tag {
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 24px;
}

/* SOLUTIONS */
.solutions-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.solution-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: #ffffff;
  padding: 40px;
  border: 2px solid #000000;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.solution-card img {
  width: 64px;
  height: 64px;
}

.solution-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.solution-card li {
  padding-left: 24px;
  position: relative;
  color: #4a4a4a;
}

.solution-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: 700;
}

/* TECHNOLOGY STACK */
.technology-stack {
  background: #f5f5f5;
}

.tech-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}

.tech-category {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  padding: 32px;
  background: #ffffff;
  border-left: 4px solid #000000;
}

.tech-category h3 {
  margin-bottom: 12px;
}

.tech-category p {
  color: #4a4a4a;
}

.integration-note {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  padding: 32px;
  background: #ffffff;
  border: 2px solid #000000;
  margin-top: 32px;
}

/* MISSION & VISION */
.mission-vision {
  background: #ffffff;
}

.mission-grid {
  display: flex;
  gap: 32px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.mission-card,
.vision-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  padding: 48px;
  background: #f8f8f8;
  border: 2px solid #000000;
}

.values-list {
  margin-top: 64px;
}

.values-list h3 {
  text-align: center;
  margin-bottom: 40px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.value-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  padding: 32px;
  background: #ffffff;
  border: 2px solid #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.value-item img {
  width: 56px;
  height: 56px;
}

/* OUR STORY */
.our-story {
  background: #f5f5f5;
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
}

.achievements {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 2px solid #000000;
  flex-wrap: wrap;
}

.achievement-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.achievement-item strong {
  font-size: 42px;
  color: #000000;
}

.achievement-item span {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #4a4a4a;
}

/* APPROACH & PRINCIPLES */
.our-approach {
  background: #ffffff;
}

.approach-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.principle-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  padding: 40px;
  background: #f8f8f8;
  border: 2px solid #000000;
  transition: all 0.3s ease;
}

.principle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* CERTIFICATIONS */
.certifications {
  background: #f5f5f5;
}

.cert-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cert-item {
  padding: 24px 32px;
  background: #ffffff;
  border: 2px solid #000000;
  font-weight: 600;
  text-align: center;
}

/* TESTIMONIALS */
.testimonials {
  background: #f5f5f5;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  padding: 40px;
  background: #ffffff;
  border: 2px solid #000000;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-card p {
  font-size: 17px;
  font-style: italic;
  color: #1a1a1a;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 2px solid #e0e0e0;
}

.testimonial-author strong {
  font-size: 16px;
  color: #000000;
}

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

.testimonials > .container > .btn-secondary {
  display: block;
  margin: 0 auto;
  width: fit-content;
}

/* CASE STUDIES */
.case-studies-preview {
  background: #ffffff;
}

.case-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.case-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  padding: 40px;
  background: #f8f8f8;
  border: 2px solid #000000;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.case-card h3 {
  font-size: 24px;
}

.case-study-full {
  background: #f8f8f8;
  padding: 48px;
  margin-bottom: 48px;
  border: 2px solid #000000;
}

.case-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid #000000;
}

.case-header h3 {
  margin-bottom: 12px;
}

.industry {
  font-size: 14px;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.case-content h4 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.results-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.results-list li {
  padding-left: 28px;
  position: relative;
  color: #2a2a2a;
  font-weight: 500;
}

.results-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: 700;
  font-size: 18px;
}

.testimonial-inline {
  background: #ffffff;
  padding: 32px;
  margin-top: 32px;
  border-left: 4px solid #000000;
}

.testimonial-inline p {
  font-style: italic;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.testimonial-inline strong {
  display: block;
  margin-top: 16px;
  color: #000000;
}

/* RESULTS METRICS */
.results-metrics {
  background: #000000;
  color: #ffffff;
}

.results-metrics h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 48px;
}

.metrics-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.metric-card {
  text-align: center;
  padding: 32px;
  min-width: 200px;
  border: 2px solid #ffffff;
}

.metric-card strong {
  display: block;
  font-size: 56px;
  color: #ffffff;
  margin-bottom: 12px;
}

.metric-card p {
  font-size: 14px;
  color: #e0e0e0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* TESTIMONIALS DETAILED */
.testimonials-detailed {
  background: #f5f5f5;
}

.testimonials-detailed .author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 2px solid #e0e0e0;
}

/* BLOG */
.blog-categories {
  background: #f5f5f5;
  padding: 40px 20px;
}

.category-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.category-btn {
  padding: 12px 24px;
  background: #ffffff;
  border: 2px solid #000000;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
  background: #000000;
  color: #ffffff;
}

.blog-grid {
  background: #ffffff;
}

.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.article-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background: #f8f8f8;
  padding: 32px;
  border: 2px solid #000000;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.article-meta .category {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #000000;
  padding: 4px 12px;
  background: #ffffff;
  border: 1px solid #000000;
}

.article-meta .read-time {
  font-size: 12px;
  color: #666666;
}

.article-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  border-top: 2px solid #e0e0e0;
  margin-top: auto;
}

.article-footer .author {
  font-size: 14px;
  font-weight: 600;
  color: #000000;
}

.article-footer .date {
  font-size: 14px;
  color: #666666;
}

/* NEWSLETTER */
.newsletter-signup {
  background: #f5f5f5;
}

.newsletter-signup h2 {
  text-align: center;
  margin-bottom: 16px;
}

.newsletter-signup > .container > p {
  text-align: center;
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.email-input {
  flex: 1;
  min-width: 250px;
  padding: 16px;
  border: 2px solid #000000;
  font-size: 16px;
  font-family: inherit;
}

.privacy-note {
  text-align: center;
  font-size: 13px;
  color: #666666;
  max-width: 600px;
  margin: 0 auto;
}

/* FAQ */
.faq-section {
  background: #ffffff;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.faq-item {
  padding: 32px;
  background: #f8f8f8;
  border: 2px solid #000000;
}

.faq-item h3 {
  margin-bottom: 16px;
}

.faq-section > .container > .btn-secondary {
  display: block;
  margin: 0 auto;
  width: fit-content;
}

/* CONTACT */
.contact-methods {
  background: #f5f5f5;
}

.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.method-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  padding: 32px;
  background: #ffffff;
  border: 2px solid #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.method-card img {
  width: 56px;
  height: 56px;
}

.method-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.method-card p {
  margin-bottom: 4px;
}

/* CONTACT FORM */
.contact-form-section {
  background: #ffffff;
}

.form-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.form-note {
  background: #f8f8f8;
  padding: 24px;
  margin-bottom: 32px;
  border-left: 4px solid #000000;
}

.form-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.form-field {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field.full-width {
  flex: 1 1 100%;
}

.form-field label {
  font-weight: 600;
  color: #000000;
  font-size: 14px;
}

.input-field,
.textarea-field {
  padding: 14px;
  border: 2px solid #000000;
  font-size: 16px;
  font-family: inherit;
  background: #ffffff;
  transition: all 0.3s ease;
}

.input-field:focus,
.textarea-field:focus {
  outline: none;
  border-color: #4a4a4a;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

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

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-label a {
  text-decoration: underline;
}

/* OFFICE INFO */
.office-info {
  background: #f5f5f5;
}

.office-details {
  max-width: 600px;
  margin: 0 auto;
}

.office-text {
  background: #ffffff;
  padding: 40px;
  border: 2px solid #000000;
}

.office-text h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.office-text h3:first-child {
  margin-top: 0;
}

.note {
  font-size: 14px;
  color: #666666;
  font-style: italic;
  margin-top: 24px;
}

/* TEAM CONTACTS */
.team-contacts {
  background: #ffffff;
}

.contacts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  padding: 24px;
  background: #f8f8f8;
  border: 2px solid #000000;
  text-align: center;
}

.contact-item h4 {
  margin-bottom: 12px;
  font-size: 16px;
}

.contact-item p {
  font-size: 14px;
  font-weight: 600;
  color: #000000;
}

/* CTA SECTION */
.cta-section {
  background: #000000;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.cta-section h2 {
  color: #ffffff;
  font-size: 40px;
  margin-bottom: 20px;
}

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

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

.cta-section .btn-primary {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

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

.cta-section .btn-secondary {
  border-color: #ffffff;
  color: #ffffff;
}

.cta-section .btn-secondary:hover {
  background: #ffffff;
  color: #000000;
}

.contact-info {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-info span {
  font-weight: 600;
  color: #ffffff;
}

.phone-cta {
  display: block;
  font-size: 16px;
  color: #e0e0e0;
  margin-top: 16px;
}

/* LEGAL PAGES */
.legal-hero {
  background: #f8f8f8;
  padding: 80px 20px 60px;
}

.legal-hero h1 {
  font-size: 42px;
}

.last-updated {
  font-size: 14px;
  color: #666666;
  margin-top: 16px;
}

.legal-content {
  background: #ffffff;
  padding: 80px 20px;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.content-wrapper h2 {
  margin-top: 48px;
  margin-bottom: 24px;
}

.content-wrapper h2:first-child {
  margin-top: 0;
}

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

.content-wrapper ul,
.content-wrapper ol {
  margin-left: 24px;
  margin-bottom: 20px;
}

.content-wrapper li {
  margin-bottom: 12px;
  list-style: disc;
  color: #2a2a2a;
}

.content-wrapper a {
  color: #000000;
  text-decoration: underline;
  font-weight: 600;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: #f5f5f5;
  padding: 100px 20px;
  text-align: center;
  border-bottom: 2px solid #000000;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  margin: 0 auto 32px;
}

.subtitle {
  font-size: 18px;
  color: #4a4a4a;
}

.confirmation-details {
  background: #ffffff;
  padding: 80px 20px;
}

.confirmation-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px;
  background: #f8f8f8;
  border: 2px solid #000000;
}

.confirmation-box h2 {
  margin-bottom: 16px;
}

.next-steps {
  margin-top: 48px;
}

.next-steps h3 {
  margin-bottom: 32px;
}

.resources-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.resource-card,
.resource-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  padding: 32px;
  background: #ffffff;
  border: 2px solid #000000;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.resource-card img,
.resource-item img {
  width: 56px;
  height: 56px;
}

.resource-card h4,
.resource-item h3 {
  margin-bottom: 8px;
}

.resource-card p,
.resource-item p {
  margin-bottom: 16px;
  color: #4a4a4a;
}

.urgent-contact {
  background: #f5f5f5;
  padding: 60px 20px;
  text-align: center;
}

.urgent-info {
  max-width: 500px;
  margin: 0 auto;
  padding: 32px;
  background: #000000;
  color: #ffffff;
  border: 2px solid #000000;
}

.urgent-info p {
  color: #ffffff;
  margin-bottom: 8px;
}

.urgent-info strong {
  color: #ffffff;
}

.navigation-section {
  background: #ffffff;
  padding: 60px 20px;
}

.nav-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.additional-resources {
  background: #f5f5f5;
  padding: 80px 20px;
}

.contact-info-box {
  margin-top: 32px;
  padding: 24px;
  background: #ffffff;
  border-left: 4px solid #000000;
}

.contact-info-box p {
  margin-bottom: 12px;
}

/* FOOTER */
footer {
  background: #000000;
  color: #ffffff;
  padding: 60px 20px 32px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 2px solid #333333;
}

.footer-col {
  flex: 1 1 calc(25% - 48px);
  min-width: 220px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 20px;
  filter: invert(1);
}

.tagline {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.footer-col a {
  color: #cccccc;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-col p {
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #cccccc;
  font-size: 14px;
}

.footer-legal a:hover {
  color: #ffffff;
}

.copyright {
  color: #999999;
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000000;
  color: #ffffff;
  padding: 24px;
  border-top: 2px solid #ffffff;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.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 1 400px;
}

.cookie-text h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 8px;
}

.cookie-text p {
  color: #cccccc;
  font-size: 14px;
  margin-bottom: 0;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  color: #ffffff;
}

.cookie-btn.accept {
  background: #ffffff;
  color: #000000;
}

.cookie-btn.accept:hover {
  background: #e0e0e0;
  border-color: #e0e0e0;
}

.cookie-btn.reject:hover,
.cookie-btn.settings:hover {
  background: #ffffff;
  color: #000000;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.modal-content {
  background: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border: 2px solid #000000;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #000000;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border: none;
  cursor: pointer;
  font-size: 20px;
}

.modal-content h2 {
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background: #f8f8f8;
  border: 2px solid #e0e0e0;
  margin-bottom: 16px;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.category-header h3 {
  margin-bottom: 0;
  font-size: 18px;
}

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

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

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #cccccc;
  border: 2px solid #000000;
  transition: 0.3s;
}

.toggle-slider::before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background: #000000;
  transition: 0.3s;
}

input:checked + .toggle-slider {
  background: #000000;
}

input:checked + .toggle-slider::before {
  background: #ffffff;
  transform: translateX(24px);
}

input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  font-size: 14px;
  color: #4a4a4a;
}

.modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 32px; }
  h3 { font-size: 24px; }
  h4 { font-size: 20px; }
  
  /* Header */
  .main-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 80px 20px 60px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-subheadline {
    font-size: 18px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  .trust-badges {
    gap: 20px;
  }
  
  /* Page Hero */
  .page-hero h1 {
    font-size: 36px;
  }
  
  /* Sections */
  section {
    padding: 60px 20px;
  }
  
  /* Grids */
  .benefits-grid,
  .services-grid,
  .solutions-cards,
  .values-grid,
  .approach-grid,
  .testimonials-grid,
  .case-cards,
  .articles-grid,
  .methods-grid,
  .contacts-grid {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .solution-card,
  .value-item,
  .principle-card,
  .testimonial-card,
  .case-card,
  .article-card,
  .method-card,
  .contact-item {
    flex: 1 1 100%;
  }
  
  /* Statistics & Achievements */
  .statistics,
  .achievements,
  .metrics-grid {
    gap: 32px;
  }
  
  /* Forms */
  .form-field {
    flex: 1 1 100%;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  /* Cookie Consent */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1 1 calc(50% - 6px);
    min-width: 120px;
  }
  
  /* Modal */
  .modal-content {
    padding: 24px;
  }
  
  .modal-buttons {
    flex-direction: column;
  }
  
  .modal-buttons .btn-primary,
  .modal-buttons .btn-secondary {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 26px; }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .page-hero h1 {
    font-size: 28px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 15px;
  }
  
  .service-detail-card,
  .case-study-full,
  .confirmation-box,
  .office-text {
    padding: 24px;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
}

/* ACCESSIBILITY */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

:focus-visible {
  outline: 3px solid #000000;
  outline-offset: 2px;
}

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

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

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

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

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