:root {
  --charcoal-dark: #1a1a1a;
  --charcoal-medium: #2d2d2d;
  --charcoal-light: #3f3f3f;
  --orange-vibrant: #ff5722;
  --orange-glow: #ff7043;
  --electric-blue: #00bcd4;
  --metal-silver: #b0bec5;
  --white-pure: #ffffff;
  --glass-overlay: rgba(255, 255, 255, 0.08);
  --shadow-deep: rgba(0, 0, 0, 0.4);
}

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

body {
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--white-pure);
  background: var(--charcoal-dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.1;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h3 {
  font-size: 1.75rem;
  line-height: 1.3;
}

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--orange-glow);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header-main {
  background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal-medium) 100%);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--orange-vibrant);
  box-shadow: 0 4px 12px var(--shadow-deep);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--white-pure);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-logo::before {
  content: "⚙";
  font-size: 2rem;
  color: var(--orange-vibrant);
}

.nav-primary ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-primary a {
  color: var(--white-pure);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.nav-primary a:hover,
.nav-primary a.active {
  color: var(--orange-vibrant);
  border-bottom-color: var(--orange-vibrant);
}

.burger-toggle {
  display: none;
  background: var(--orange-vibrant);
  border: none;
  color: var(--white-pure);
  font-size: 1.75rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.burger-toggle:hover {
  background: var(--orange-glow);
}

.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 0;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(45, 45, 45, 0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: var(--white-pure);
  text-shadow: 2px 2px 8px var(--shadow-deep);
}

.hero-title span {
  color: var(--orange-vibrant);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  color: var(--metal-silver);
  font-weight: 400;
}

.cta-group {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--orange-vibrant);
  color: var(--white-pure);
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.4);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 48px;
}

.btn-primary:hover {
  background: var(--orange-glow);
  color: var(--white-pure);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 87, 34, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--white-pure);
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid var(--white-pure);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 48px;
}

.btn-secondary:hover {
  background: var(--white-pure);
  color: var(--charcoal-dark);
}

.section-standard {
  padding: 6rem 0;
}

.section-accent {
  background: var(--charcoal-medium);
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  color: var(--white-pure);
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--orange-vibrant);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--metal-silver);
  max-width: 700px;
  margin: 0 auto;
}

.grid-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: linear-gradient(135deg, var(--charcoal-medium) 0%, var(--charcoal-light) 100%);
  border: 2px solid var(--glass-overlay);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  color: var(--white-pure);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-vibrant), var(--electric-blue));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--orange-vibrant);
  box-shadow: 0 12px 24px var(--shadow-deep);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--orange-vibrant);
}

.service-name {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white-pure);
}

.service-description {
  color: var(--metal-silver);
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--orange-vibrant);
  margin-bottom: 1.5rem;
}

.grid-team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.team-member {
  text-align: center;
  color: var(--white-pure);
}

.team-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border: 3px solid var(--orange-vibrant);
}

.team-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--white-pure);
}

.team-role {
  font-size: 1rem;
  color: var(--orange-vibrant);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-bio {
  color: var(--metal-silver);
}

.grid-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.benefit-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--glass-overlay);
  border-radius: 8px;
  border-left: 4px solid var(--orange-vibrant);
  color: var(--white-pure);
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--orange-vibrant);
  flex-shrink: 0;
}

.benefit-text h3 {
  margin-bottom: 0.75rem;
  color: var(--white-pure);
}

.benefit-text p {
  color: var(--metal-silver);
}

.testimonials-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--charcoal-medium);
  padding: 2rem;
  border-radius: 8px;
  border: 2px solid var(--glass-overlay);
  color: var(--white-pure);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--metal-silver);
  font-size: 1.125rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange-vibrant);
}

.author-info h4 {
  margin-bottom: 0.25rem;
  color: var(--white-pure);
}

.author-info p {
  font-size: 0.9rem;
  color: var(--orange-vibrant);
  margin: 0;
}

.contact-section {
  background: var(--charcoal-medium);
  padding: 6rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  margin-bottom: 2rem;
  color: var(--white-pure);
}

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
  color: var(--white-pure);
}

.info-icon {
  font-size: 1.5rem;
  color: var(--orange-vibrant);
  flex-shrink: 0;
}

.info-text a {
  color: var(--metal-silver);
  word-break: break-all;
}

.info-text a:hover {
  color: var(--orange-vibrant);
}

.contact-form {
  background: var(--charcoal-light);
  padding: 2.5rem;
  border-radius: 8px;
  border: 2px solid var(--glass-overlay);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--white-pure);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid var(--metal-silver);
  border-radius: 4px;
  font-size: 1rem;
  background: var(--charcoal-medium);
  color: var(--white-pure);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange-vibrant);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--metal-silver);
}

.footer-main {
  background: linear-gradient(135deg, var(--charcoal-dark) 0%, #0d0d0d 100%);
  color: var(--metal-silver);
  padding: 4rem 0 2rem;
  border-top: 3px solid var(--orange-vibrant);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: var(--white-pure);
  margin-bottom: 1.5rem;
}

.footer-section p,
.footer-section a {
  color: var(--metal-silver);
  margin-bottom: 0.75rem;
}

.footer-section a:hover {
  color: var(--orange-vibrant);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--charcoal-medium);
  color: var(--metal-silver);
}

.cookie-consent-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  background: var(--charcoal-medium);
  color: var(--white-pure);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 8px 24px var(--shadow-deep);
  max-width: 420px;
  z-index: 9999;
  border: 2px solid var(--orange-vibrant);
}

.cookie-consent-banner p {
  margin-bottom: 1rem;
  color: var(--metal-silver);
}

.cookie-consent-banner a {
  color: var(--orange-vibrant);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  min-height: 44px;
}

.cookie-accept {
  background: var(--orange-vibrant);
  color: var(--white-pure);
}

.cookie-accept:hover {
  background: var(--orange-glow);
}

.cookie-decline {
  background: transparent;
  color: var(--white-pure);
  border: 2px solid var(--metal-silver);
}

.cookie-decline:hover {
  background: var(--metal-silver);
  color: var(--charcoal-dark);
}

.map-container {
  width: 100%;
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
  border: 3px solid var(--orange-vibrant);
  margin-top: 3rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.portfolio-item {
  background: var(--charcoal-medium);
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--glass-overlay);
  transition: all 0.3s ease;
  color: var(--white-pure);
}

.portfolio-item:hover {
  transform: translateY(-8px);
  border-color: var(--orange-vibrant);
  box-shadow: 0 12px 24px var(--shadow-deep);
}

.portfolio-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.portfolio-content {
  padding: 1.5rem;
}

.portfolio-content h3 {
  margin-bottom: 0.75rem;
  color: var(--white-pure);
}

.portfolio-content p {
  color: var(--metal-silver);
  margin: 0;
}

.success-message {
  background: var(--charcoal-medium);
  border: 2px solid var(--orange-vibrant);
  border-radius: 8px;
  padding: 3rem;
  text-align: center;
  max-width: 600px;
  margin: 4rem auto;
  color: var(--white-pure);
}

.success-message h1 {
  color: var(--orange-vibrant);
  margin-bottom: 1.5rem;
}

.success-message p {
  color: var(--metal-silver);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.legal-content {
  background: var(--charcoal-medium);
  padding: 3rem;
  border-radius: 8px;
  margin: 2rem 0;
  color: var(--white-pure);
}

.legal-content h2 {
  color: var(--orange-vibrant);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

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

.legal-content p {
  color: var(--metal-silver);
  margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
  color: var(--metal-silver);
}

.legal-content li {
  margin-bottom: 0.5rem;
}

[class*="text-"] strong,
[class*="text-"] b,
[style*="color"] strong,
[style*="color"] b,
.text-white strong, .text-white b,
.text-light strong, .text-light b {
  color: inherit;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .brand-logo {
    font-size: 1.15rem;
  }

  .nav-primary {
    position: fixed;
    top: 94px;
    left: 0;
    width: 100%;
    background: var(--charcoal-dark);
    
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-primary.active {
    max-height: 500px;
    border-top: 2px solid var(--orange-vibrant);
  }

  .nav-primary ul {
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
  }

  .nav-primary li {
    width: 100%;
    text-align: center;
  }

  .nav-primary a {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid var(--charcoal-medium);
  }

  .burger-toggle {
    display: flex;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cookie-consent-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }

  .section-standard,
  .section-accent {
    padding: 4rem 0;
  }

  .portfolio-grid,
  .grid-services {
    grid-template-columns: 1fr;
  }
}