  :root {
    --color-industrial-teal: #0d4f4f;
    --color-lime-accent: #a4d13d;
    --color-lime-light: #c5e86c;
    --color-dark-metal: #1a1a1a;
    --color-concrete-gray: #f5f5f5;
    --color-warning-orange: #ff6b35;
    --font-display: 'Impact', 'Arial Black', sans-serif;
    --font-body: 'Segoe UI', 'Roboto', sans-serif;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: var(--font-body);
    background-color: var(--color-concrete-gray);
    color: var(--color-dark-metal);
    line-height: 1.6;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.02em;
  }

  strong, p, b {
    color: inherit;
  }

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

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 79, 79, 0.92) 0%, rgba(26, 26, 26, 0.88) 100%);
    z-index: 1;
  }

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

  .glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
  }

  .glass-card-dark {
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
  }

  .btn-primary {
    background-color: var(--color-lime-accent);
    color: var(--color-dark-metal);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: 3px solid var(--color-lime-accent);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .btn-primary:hover {
    background-color: var(--color-lime-light);
    border-color: var(--color-lime-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(164, 209, 61, 0.4);
  }

  .btn-secondary {
    background-color: transparent;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: 3px solid #ffffff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .btn-secondary:hover {
    background-color: #ffffff;
    color: var(--color-dark-metal);
  }

  .btn-emergency {
    background-color: var(--color-warning-orange);
    color: #ffffff;
    padding: 1.25rem 3rem;
    border-radius: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    animation: pulse-warning 2s infinite;
  }

  .btn-emergency:hover {
    background-color: #ff8555;
    transform: scale(1.05);
  }

  @keyframes pulse-warning {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.5); }
    50% { box-shadow: 0 0 0 15px rgba(255, 107, 53, 0); }
  }

  .section-padding {
    padding: 5rem 0;
  }

  .section-padding-large {
    padding: 7rem 0;
  }

  .card-service {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }

  .card-service:hover {
    transform: translateY(-8px);
    border-color: var(--color-lime-accent);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
  }

  .card-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--color-industrial-teal), var(--color-lime-accent));
  }

  .card-service-featured {
    background: linear-gradient(135deg, var(--color-industrial-teal), #0a3d3d);
    color: #ffffff;
    border: 3px solid var(--color-lime-accent);
  }

  .card-service-featured .service-price {
    color: var(--color-lime-accent);
  }

  .service-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-lime-accent), var(--color-lime-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .service-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-industrial-teal);
    margin-top: 1rem;
  }

  .service-price-period {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
  }

  .section-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }

  .section-subheading {
    font-size: 1.25rem;
    opacity: 0.85;
    max-width: 600px;
  }

  .stat-box {
    text-align: center;
    padding: 2rem;
  }

  .stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-lime-accent);
    line-height: 1;
  }

  .stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0.5rem;
    opacity: 0.9;
  }

  .testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
  }

  .testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 6rem;
    color: var(--color-lime-accent);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
  }

  .testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
  }

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

  .author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-lime-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-dark-metal);
  }

  .team-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
  }

  .team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
  }

  .team-image-placeholder {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--color-industrial-teal), #0a3d3d);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--color-lime-accent);
  }

  .team-info {
    padding: 1.5rem;
  }

  .team-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
  }

  .team-role {
    color: var(--color-industrial-teal);
    font-weight: 600;
  }

  .form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
  }

  .form-input:focus {
    outline: none;
    border-color: var(--color-lime-accent);
    box-shadow: 0 0 0 4px rgba(164, 209, 61, 0.2);
  }

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

  .form-section {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
  }

  .map-container {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--color-concrete-gray);
  }

  .contact-info-card {
    background: var(--color-dark-metal);
    color: #ffffff;
    border-radius: 16px;
    padding: 2rem;
  }

  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .contact-item-icon {
    width: 48px;
    height: 48px;
    background: var(--color-lime-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
  }

  .footer-main {
    background: var(--color-dark-metal);
    color: #ffffff;
    padding: 4rem 0 2rem;
  }

  .footer-column h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--color-lime-accent);
  }

  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

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

  .footer-column a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.8;
  }

  .footer-column a:hover {
    color: var(--color-lime-accent);
    opacity: 1;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    opacity: 0.6;
    font-size: 0.9rem;
  }

  .header-main {
    background: var(--color-dark-metal);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
  }

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

  .logo-area {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .logo-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-lime-accent), var(--color-lime-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
  }

  .logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
  }

  .logo-text span {
    color: var(--color-lime-accent);
  }

  .nav-desktop {
    display: none;
  }

  .nav-desktop ul {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-desktop a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
  }

  .nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--color-lime-accent);
    transition: width 0.3s ease;
  }

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

  .nav-desktop a:hover {
    color: var(--color-lime-accent);
  }

  .mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
  }

  .mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .mobile-menu-overlay.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
  }

  .mobile-menu-content {
    text-align: center;
  }

  .mobile-menu-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-menu-content li {
    margin-bottom: 2rem;
  }

  .mobile-menu-content a {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .mobile-menu-content a:hover {
    color: var(--color-lime-accent);
  }

  .close-menu-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
  }

  .cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    max-width: 500px;
    background: var(--color-dark-metal);
    color: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    z-index: 2000;
    display: block;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
  }

  .cookie-banner h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-lime-accent);
  }

  .cookie-banner p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    opacity: 0.85;
  }

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

  .cookie-btn {
    flex: 1;
    min-width: 120px;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
  }

  .cookie-btn-accept {
    background: var(--color-lime-accent);
    color: var(--color-dark-metal);
  }

  .cookie-btn-accept:hover {
    background: var(--color-lime-light);
  }

  .cookie-btn-decline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
  }

  .cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
  }

  .faq-item:hover {
    border-color: var(--color-lime-accent);
  }

  .faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-lime-accent);
    transition: transform 0.3s ease;
  }

  .faq-item.active .faq-question::after {
    transform: rotate(45deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    opacity: 0.8;
  }

  .page-hero {
    background: linear-gradient(135deg, var(--color-industrial-teal), #0a3d3d);
    padding: 4rem 0;
    min-height: auto;
  }

  .page-hero h1 {
    color: #ffffff;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
  }

  .page-hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.25rem;
  }

  .service-detail-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
  }

  .service-detail-header {
    background: linear-gradient(135deg, var(--color-industrial-teal), #0a3d3d);
    padding: 3rem;
    color: #ffffff;
  }

  .service-detail-content {
    padding: 3rem;
  }

  .process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
  }

  .process-step-number {
    width: 56px;
    height: 56px;
    background: var(--color-lime-accent);
    color: var(--color-dark-metal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  .process-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 56px;
    width: 3px;
    height: calc(100% + 1rem);
    background: var(--color-lime-accent);
    opacity: 0.3;
  }

  .price-table {
    width: 100%;
    border-collapse: collapse;
  }

  .price-table tr {
    border-bottom: 1px solid #e5e5e5;
  }

  .price-table tr:last-child {
    border-bottom: none;
  }

  .price-table td {
    padding: 1rem 0;
  }

  .price-table td:last-child {
    text-align: right;
    font-weight: 700;
    color: var(--color-industrial-teal);
  }

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

  .gallery-item {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--color-concrete-gray);
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .gallery-item:hover img {
    transform: scale(1.1);
  }

  .thank-you-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
  }

  .thank-you-content {
    max-width: 600px;
  }

  .success-icon {
    width: 120px;
    height: 120px;
    background: var(--color-lime-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto 2rem;
    animation: success-pop 0.6s ease;
  }

  @keyframes success-pop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
  }

  .legal-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
  }

  .legal-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: var(--color-industrial-teal);
  }

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

  .legal-content p {
    margin-bottom: 1rem;
    opacity: 0.8;
  }

  .legal-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    opacity: 0.8;
  }

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

  @media (min-width: 768px) {
    .nav-desktop {
      display: block;
    }

    .mobile-menu-btn {
      display: none;
    }
  }

  @media (max-width: 767px) {
    .cookie-banner {
      left: 1rem;
      right: 1rem;
      bottom: 1rem;
      max-width: none;
    }

    .section-padding {
      padding: 3rem 0;
    }

    .section-padding-large {
      padding: 4rem 0;
    }
  }

  @media (min-width: 1024px) {
    .grid-layers {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
  }