/* ==========================================================================
   CyberGlider - Monochrome Sophisticated Design System
   Modern, elegant black/white/gray technology consulting website
   ========================================================================== */

/* CSS Reset & Base Styles
   ========================================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', -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;
}

/* Typography - Sophisticated Monochrome
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #000000;
  letter-spacing: -0.02em;
}

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

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

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

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

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

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

ul {
  list-style: none;
}

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

/* Container & Layout
   ========================================================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header - Elegant Minimalist
   ========================================================================== */

header {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

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

.main-nav a {
  color: #333333;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #000000;
  border-bottom-color: #000000;
}

.cta-button {
  background-color: #000000;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border: 2px solid #000000;
}

.cta-button:hover {
  background-color: #ffffff;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile Menu
   ========================================================================== */

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

.mobile-menu-toggle:hover {
  background-color: #333333;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1999;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
}

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

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

.mobile-menu-close:hover {
  transform: rotate(90deg);
  color: #666666;
}

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

.mobile-nav a {
  color: #333333;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #000000;
  padding-left: 10px;
}

/* Buttons - Monochrome Sophisticated
   ========================================================================== */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 40px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #000000;
  text-align: center;
}

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

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

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

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

/* Hero Section - Dramatic Contrast
   ========================================================================== */

.hero {
  background: linear-gradient(135deg, #000000 0%, #2a2a2a 100%);
  color: #ffffff;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.03) 50%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, rgba(255,255,255,0.03) 50%, transparent 55%);
  background-size: 60px 60px;
  opacity: 0.5;
}

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

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

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

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #cccccc;
  margin-top: 60px;
}

.trust-indicators span {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Internal Hero
   ========================================================================== */

.hero-internal {
  background-color: #f8f8f8;
  padding: 60px 20px 40px;
  border-bottom: 1px solid #e0e0e0;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  color: #666666;
}

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

.breadcrumb a:hover {
  color: #000000;
}

.intro-text {
  font-size: 18px;
  color: #666666;
  max-width: 700px;
}

/* Sections - Clean & Sophisticated
   ========================================================================== */

section {
  padding: 80px 20px;
  margin-bottom: 0;
}

.problem-solution {
  background-color: #ffffff;
  text-align: center;
}

.problem-solution h2 {
  max-width: 800px;
  margin: 0 auto 24px;
}

.problem-solution > .container > p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #555555;
}

.solution-box {
  background-color: #000000;
  color: #ffffff;
  padding: 50px;
  margin-top: 60px;
  border-radius: 4px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.solution-box h3 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 28px;
}

.solution-box p {
  color: #e0e0e0;
  font-size: 18px;
}

/* Services & Cards - Flexbox Grid
   ========================================================================== */

.services-overview {
  background-color: #f8f8f8;
}

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

.services-grid,
.trends-grid,
.benefits-grid,
.expertise-grid,
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

.service-card,
.trend-card,
.benefit-card,
.expertise-card,
.category-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 40px;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card:hover,
.trend-card:hover,
.benefit-card:hover,
.expertise-card:hover,
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #000000;
}

.service-card h3,
.trend-card h3,
.benefit-card h3,
.expertise-card h3,
.category-card h3 {
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p,
.trend-card p,
.benefit-card p,
.expertise-card p,
.category-card p {
  color: #555555;
  flex-grow: 1;
  margin-bottom: 20px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin-top: 20px;
  display: block;
}

.impact-badge {
  display: inline-block;
  background-color: #000000;
  color: #ffffff;
  padding: 6px 16px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 20px;
  border-radius: 2px;
}

/* Technology Trends
   ========================================================================== */

.technology-trends {
  background-color: #ffffff;
}

.technology-trends h2 {
  text-align: center;
  margin-bottom: 60px;
}

/* Process Steps
   ========================================================================== */

.process {
  background-color: #000000;
  color: #ffffff;
}

.process h2 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 60px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.step {
  flex: 1 1 calc(25% - 30px);
  min-width: 220px;
  text-align: center;
  padding: 30px 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.step:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.step-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  font-family: 'Rajdhani', sans-serif;
}

.step h3 {
  color: #ffffff;
  margin-bottom: 16px;
}

.step p {
  color: #cccccc;
}

/* Benefits
   ========================================================================== */

.benefits {
  background-color: #f8f8f8;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 60px;
}

/* Testimonials - High Contrast Readability
   ========================================================================== */

.testimonials {
  background-color: #ffffff;
  padding: 80px 20px;
}

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

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 15px);
  min-width: 300px;
  background-color: #f8f8f8;
  padding: 40px;
  border-left: 4px solid #000000;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.testimonial-card cite {
  color: #000000;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
}

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

/* Mission & Vision
   ========================================================================== */

.mission-vision {
  background-color: #ffffff;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.mission,
.vision {
  max-width: 800px;
  margin: 0 auto;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 60px;
}

.value-card {
  flex: 1 1 calc(50% - 15px);
  min-width: 280px;
  padding: 30px;
  background-color: #f8f8f8;
  border-left: 4px solid #000000;
}

/* Story & Text Sections
   ========================================================================== */

.story,
.expertise,
.team,
.methodology {
  background-color: #f8f8f8;
}

.story:nth-of-type(even),
.expertise:nth-of-type(even),
.team:nth-of-type(even),
.methodology:nth-of-type(even) {
  background-color: #ffffff;
}

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

.text-section p {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.8;
}

.text-section h3 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.text-section ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 24px;
}

.text-section li {
  margin-bottom: 12px;
  color: #555555;
}

/* Service Detail Pages
   ========================================================================== */

.services-detailed .container {
  max-width: 900px;
}

.service-detail {
  background-color: #ffffff;
  padding: 50px;
  margin-bottom: 40px;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
}

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

.service-detail p {
  margin-bottom: 24px;
  font-size: 16px;
}

.service-detail ul {
  list-style: none;
  margin: 30px 0;
}

.service-detail li {
  padding: 12px 0 12px 30px;
  position: relative;
  color: #555555;
}

.service-detail li::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: #000000;
  font-size: 20px;
}

.service-detail .price {
  margin: 30px 0;
}

.service-detail .btn-primary {
  margin-top: 20px;
}

/* Trends Overview
   ========================================================================== */

.trends-overview {
  background-color: #ffffff;
}

.trend-detail {
  background-color: #f8f8f8;
  padding: 60px 20px;
}

.trend-detail:nth-of-type(even) {
  background-color: #ffffff;
}

.trend-detail h2 {
  margin-bottom: 30px;
}

.trend-detail h3 {
  margin-top: 40px;
  margin-bottom: 20px;
}

/* Resources
   ========================================================================== */

.resource-categories,
.whitepapers,
.guides,
.checklists,
.case-studies {
  background-color: #ffffff;
}

.resource-categories:nth-of-type(even),
.whitepapers:nth-of-type(even),
.guides:nth-of-type(even),
.checklists:nth-of-type(even),
.case-studies:nth-of-type(even) {
  background-color: #f8f8f8;
}

.resources-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.resource-item {
  background-color: #ffffff;
  padding: 40px;
  border: 1px solid #e0e0e0;
  border-left: 4px solid #000000;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.resource-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.resource-item p {
  margin-bottom: 16px;
  color: #555555;
}

.meta {
  display: block;
  font-size: 14px;
  color: #999999;
  margin-top: 20px;
}

/* Contact Page
   ========================================================================== */

.contact-options {
  background-color: #f8f8f8;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.contact-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  background-color: #ffffff;
  padding: 40px;
  border: 1px solid #e0e0e0;
  text-align: center;
}

.contact-card h3 {
  margin-bottom: 20px;
  font-size: 20px;
}

.contact-card p {
  color: #555555;
}

/* Contact Form
   ========================================================================== */

.contact-form-section {
  background-color: #ffffff;
}

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

.form-preview {
  max-width: 600px;
  margin: 0 auto;
}

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

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

.input-placeholder,
.textarea-placeholder {
  width: 100%;
  height: 50px;
  background-color: #f8f8f8;
  border: 2px solid #e0e0e0;
  border-radius: 2px;
}

.textarea-placeholder {
  height: 150px;
}

.form-field input[type="checkbox"] {
  margin-right: 8px;
}

.form-field button {
  margin-top: 20px;
}

/* Office Location
   ========================================================================== */

.office-location {
  background-color: #f8f8f8;
}

.location-info {
  max-width: 800px;
  margin: 0 auto;
}

.location-info h3 {
  margin-bottom: 16px;
}

.location-info h4 {
  margin-top: 30px;
  margin-bottom: 12px;
}

/* FAQ
   ========================================================================== */

.faq,
.faq-quick {
  background-color: #ffffff;
}

.faq-item {
  background-color: #f8f8f8;
  padding: 30px;
  margin-bottom: 20px;
  border-left: 4px solid #000000;
  border-radius: 2px;
}

.faq-item h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p {
  color: #555555;
}

/* Custom Solutions & CTA Sections
   ========================================================================== */

.custom-solutions,
.cta-section {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.custom-solutions h2,
.cta-section h2 {
  color: #ffffff;
  margin-bottom: 24px;
}

.custom-solutions p,
.cta-section p {
  color: #e0e0e0;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
}

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

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

/* Legal Pages
   ========================================================================== */

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

.legal-content .text-section {
  max-width: 900px;
}

.legal-content h2 {
  margin-top: 50px;
  margin-bottom: 24px;
}

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

.legal-content p {
  margin-bottom: 20px;
}

.legal-content a {
  text-decoration: underline;
}

/* Thank You Page
   ========================================================================== */

.thank-you-hero {
  background: linear-gradient(135deg, #000000 0%, #2a2a2a 100%);
  color: #ffffff;
  padding: 120px 20px;
  text-align: center;
}

.thank-you-content h1 {
  color: #ffffff;
  margin-bottom: 24px;
}

.thank-you-content .lead {
  font-size: 20px;
  color: #e0e0e0;
  margin-bottom: 40px;
}

.next-steps {
  background-color: #f8f8f8;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 60px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.step-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 40px;
  text-align: center;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
}

.step-card .step-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
}

.while-you-wait,
.additional-resources {
  background-color: #ffffff;
  text-align: center;
}

.resources-links,
.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.resource-link,
.link-card {
  display: inline-block;
  background-color: #000000;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 2px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #000000;
}

.resource-link:hover,
.link-card:hover {
  background-color: #ffffff;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.contact-info {
  background-color: #f8f8f8;
  text-align: center;
}

.contact-details {
  max-width: 600px;
  margin: 40px auto 0;
  padding: 40px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
}

/* Footer - Elegant Minimalist
   ========================================================================== */

footer {
  background-color: #000000;
  color: #ffffff;
  padding: 60px 20px 30px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
  flex: 1 1 calc(25% - 30px);
  min-width: 200px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 20px;
}

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

.footer-column a {
  display: block;
  color: #cccccc;
  margin-bottom: 12px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: #ffffff;
  padding-left: 5px;
}

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

.footer-bottom {
  text-align: center;
}

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

.legal-links a {
  color: #999999;
  font-size: 13px;
  transition: color 0.3s ease;
}

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

.footer-bottom p {
  color: #666666;
  font-size: 13px;
}

/* Cookie Consent Banner
   ========================================================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 2px solid #000000;
  padding: 24px;
  z-index: 1998;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  display: none;
  animation: slideUp 0.4s ease;
}

.cookie-banner.active {
  display: block;
}

@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;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 400px;
}

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

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

.cookie-buttons button {
  padding: 12px 24px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #000000;
}

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

.cookie-accept:hover {
  background-color: #333333;
}

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

.cookie-reject:hover {
  background-color: #f0f0f0;
}

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

.cookie-settings:hover {
  background-color: #f0f0f0;
}

/* 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: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.cookie-modal-content {
  background-color: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border-radius: 2px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #000000;
  transition: all 0.3s ease;
}

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

.cookie-category {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
}

.cookie-category:last-child {
  border-bottom: none;
}

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

.cookie-category p {
  color: #555555;
  font-size: 14px;
  margin-bottom: 16px;
}

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

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

.cookie-toggle input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

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

.cookie-modal-buttons button {
  flex: 1 1 auto;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #000000;
}

/* Responsive Design - Mobile First
   ========================================================================== */

@media (max-width: 1024px) {
  .services-grid,
  .trends-grid,
  .benefits-grid,
  .expertise-grid {
    gap: 24px;
  }

  .service-card,
  .trend-card,
  .benefit-card,
  .expertise-card {
    flex: 1 1 calc(50% - 12px);
  }

  .process-steps {
    gap: 24px;
  }

  .step {
    flex: 1 1 calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 20px;
  }

  /* Header - Mobile */
  .main-nav,
  header .cta-button {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

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

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

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

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }

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

  /* Sections - Mobile */
  section {
    padding: 50px 20px;
  }

  /* Cards - Mobile */
  .services-grid,
  .trends-grid,
  .benefits-grid,
  .expertise-grid,
  .categories-grid,
  .values-grid,
  .contact-grid {
    gap: 20px;
  }

  .service-card,
  .trend-card,
  .benefit-card,
  .expertise-card,
  .category-card,
  .value-card,
  .contact-card,
  .testimonial-card {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* Process Steps - Mobile */
  .process-steps {
    flex-direction: column;
  }

  .step {
    flex: 1 1 100%;
  }

  /* Solution Box */
  .solution-box {
    padding: 30px;
  }

  /* Service Detail */
  .service-detail {
    padding: 30px;
  }

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

  .footer-column {
    flex: 1 1 100%;
  }

  .legal-links {
    flex-direction: column;
    gap: 12px;
  }

  /* Cookie Banner - Mobile */
  .cookie-content {
    flex-direction: column;
  }

  .cookie-text {
    flex: 1 1 100%;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }

  /* Thank You Page - Mobile */
  .steps-grid {
    flex-direction: column;
  }

  .step-card {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

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

  .btn-primary,
  .btn-secondary {
    padding: 14px 28px;
    font-size: 13px;
  }

  .service-card,
  .trend-card,
  .benefit-card,
  .expertise-card {
    padding: 24px;
  }

  .solution-box {
    padding: 24px;
  }

  .service-detail {
    padding: 24px;
  }

  .cookie-modal-content {
    padding: 24px;
  }
}

/* Print Styles
   ========================================================================== */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header .cta-button,
  .cta-buttons,
  .btn-primary,
  .btn-secondary {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  a {
    text-decoration: underline;
  }
}

/* Accessibility Improvements
   ========================================================================== */

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Smooth Transitions for All Interactive Elements
   ========================================================================== */

button,
a,
input,
textarea,
select {
  transition: all 0.3s ease;
}

/* Hover Effects for Links in Content
   ========================================================================== */

.text-section a:hover,
.legal-content a:hover {
  color: #000000;
  text-decoration: underline;
}

/* Loading States (for future implementation)
   ========================================================================== */

.loading {
  opacity: 0.6;
  pointer-events: none;
  cursor: wait;
}

/* End of Stylesheet */
