@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;500;600;700&family=Barlow+Condensed:wght@400;500;600;700&display=swap');

:root {
  --molten-orange: #FF6B2C;
  --molten-glow: #FF8C42;
  --steel-blue: #2C4A6E;
  --steel-dark: #1A2D42;
  --electric-cyan: #00E5FF;
  --chrome-border: #C0C0C0;
  --dark-metal: #1C1C1C;
  --light-metal: #E8E8E8;
  --warning-red: #FF3B3B;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--dark-metal);
  background-color: #FAFAFA;
  overflow-x: hidden;
}

strong, p {
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

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

ul {
  list-style: none;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: 'Chakra Petch', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 52px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--electric-cyan);
  color: var(--dark-metal);
  border-color: var(--electric-cyan);
}

.btn-primary:hover {
  background: transparent;
  color: var(--electric-cyan);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 229, 255, 0.35);
}

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

.btn-secondary:hover {
  background: var(--molten-orange);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 44, 0.35);
}

.btn-dark {
  background: var(--dark-metal);
  color: white;
  border-color: var(--dark-metal);
}

.btn-dark:hover {
  background: transparent;
  color: var(--dark-metal);
  transform: translateY(-2px);
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-dark {
  background: var(--dark-metal);
  color: white;
}

.section-gradient {
  background: linear-gradient(135deg, var(--molten-orange) 0%, var(--molten-glow) 50%, var(--steel-blue) 100%);
  position: relative;
  overflow: hidden;
}

.section-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 30px,
      rgba(255, 255, 255, 0.03) 30px,
      rgba(255, 255, 255, 0.03) 60px
    );
  animation: heatWave 8s ease-in-out infinite;
}

@keyframes heatWave {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(20px); }
}

.section-steel {
  background: linear-gradient(180deg, var(--steel-dark) 0%, var(--steel-blue) 100%);
  color: white;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(28, 28, 28, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--molten-orange);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Chakra Petch', sans-serif;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--molten-orange), var(--molten-glow));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: 2px solid var(--chrome-border);
  box-shadow: 0 4px 15px rgba(255, 107, 44, 0.4);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 10px 20px;
  color: white;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--electric-cyan);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link:hover {
  color: var(--electric-cyan);
}

.nav-link.active {
  color: var(--electric-cyan);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.mobile-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: white;
  transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--dark-metal);
  border-bottom: 3px solid var(--molten-orange);
  padding: 20px;
}

.mobile-menu.active {
  display: block;
  animation: slideDown 0.3s ease;
}

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

.mobile-menu .nav-link {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: 
    linear-gradient(135deg, rgba(28, 28, 28, 0.92) 0%, rgba(44, 74, 110, 0.88) 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,107,44,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 107, 44, 0.15) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(44, 74, 110, 0.2) 0%, transparent 70%);
  animation: pulse 5s ease-in-out infinite reverse;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 44, 0.2);
  border: 2px solid var(--molten-orange);
  padding: 8px 20px;
  margin-bottom: 24px;
  color: var(--molten-orange);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.hero h1 {
  font-size: clamp(40px, 8vw, 80px);
  margin-bottom: 24px;
  color: white;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero h1 span {
  display: block;
  color: var(--electric-cyan);
}

.hero-description {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid rgba(255, 255, 255, 0.15);
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--molten-orange);
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: var(--molten-orange);
  color: white;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto;
}

.section-title-dark {
  color: var(--dark-metal);
}

.section-subtitle-dark {
  color: rgba(28, 28, 28, 0.7);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-main {
  border-radius: 12px;
  overflow: hidden;
  border: 4px solid var(--chrome-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-image-overlay {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--molten-orange);
  padding: 24px 32px;
  border-radius: 8px;
  color: white;
  text-align: center;
  box-shadow: 0 10px 30px rgba(255, 107, 44, 0.4);
}

.about-image-overlay .years {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.about-image-overlay .label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-content h2 {
  font-size: 42px;
  margin-bottom: 24px;
  color: var(--dark-metal);
}

.about-content p {
  margin-bottom: 20px;
  color: #444;
}

.about-features {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--molten-orange), var(--molten-glow));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.about-feature-text {
  font-weight: 500;
}

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

.service-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #E8E8E8;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--molten-orange);
  box-shadow: 0 20px 50px rgba(255, 107, 44, 0.2);
}

.service-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

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

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--electric-cyan);
  color: var(--dark-metal);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-content {
  padding: 28px;
}

.service-content h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--dark-metal);
}

.service-content p {
  color: #666;
  margin-bottom: 20px;
  font-size: 16px;
}

.service-price {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--molten-orange);
  margin-bottom: 20px;
}

.service-price span {
  font-size: 14px;
  font-weight: 400;
  color: #888;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--steel-blue);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.service-link:hover {
  color: var(--molten-orange);
  gap: 12px;
}

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

.advantage-card {
  background: rgba(0, 0, 0, 0.05);
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.advantage-card:hover {
  border-color: var(--electric-cyan);
  transform: translateY(-4px);
}

.advantage-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--molten-orange), var(--molten-glow));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 36px;
  color: white;
  border: 4px solid var(--chrome-border);
}

.advantage-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--steel-dark);
}

.advantage-card p {
  color: rgba(0, 0, 0, 0.7);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.review-card {
  background: white;
  border-radius: 12px;
  padding: 36px;
  border: 2px solid #E8E8E8;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-family: 'Chakra Petch', sans-serif;
  font-size: 120px;
  color: var(--molten-orange);
  opacity: 0.15;
  line-height: 1;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--molten-orange);
}

.review-info h4 {
  font-size: 18px;
  color: var(--dark-metal);
  margin-bottom: 4px;
}

.review-stars {
  color: var(--molten-orange);
  font-size: 16px;
}

.review-text {
  color: #555;
  font-style: italic;
  line-height: 1.7;
}

.review-location {
  margin-top: 16px;
  font-size: 14px;
  color: #888;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-card {
  background: var(--dark-metal);
  border-radius: 12px;
  padding: 48px;
  color: white;
}

.contact-info-card h2 {
  font-size: 36px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: var(--molten-orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}

.contact-item-text p,
.contact-item-text a {
  font-size: 18px;
  color: white;
}

.contact-item-text a:hover {
  color: var(--electric-cyan);
}

.contact-form-card {
  background: white;
  border-radius: 12px;
  padding: 48px;
  border: 2px solid #E8E8E8;
}

.contact-form-card h3 {
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--dark-metal);
}

.contact-form-card > p {
  color: #666;
  margin-bottom: 32px;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark-metal);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #E8E8E8;
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #FAFAFA;
}

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

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

.form-submit {
  width: 100%;
}

.contact-map {
  margin-top: 60px;
  border-radius: 12px;
  overflow: hidden;
  border: 4px solid var(--chrome-border);
}

.contact-map iframe {
  width: 100%;
  height: 450px;
  border: none;
}

.footer {
  background: var(--dark-metal);
  color: white;
  padding: 60px 0 30px;
  border-top: 4px solid var(--molten-orange);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

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

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}

.footer h4 {
  font-size: 16px;
  margin-bottom: 24px;
  color: white;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}

.footer-links a:hover {
  color: var(--electric-cyan);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.footer-legal a:hover {
  color: var(--electric-cyan);
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--dark-metal);
  border: 3px solid var(--molten-orange);
  border-radius: 12px;
  padding: 28px;
  max-width: 420px;
  z-index: 9999;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  display: block;
}

.cookie-banner h4 {
  color: white;
  font-size: 20px;
  margin-bottom: 12px;
}

.cookie-banner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

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

.cookie-btn {
  flex: 1;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: var(--electric-cyan);
  color: var(--dark-metal);
  border: none;
}

.cookie-accept:hover {
  background: white;
}

.cookie-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-decline:hover {
  border-color: white;
  color: white;
}

.thank-you-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 
    linear-gradient(135deg, rgba(28, 28, 28, 0.95) 0%, rgba(44, 74, 110, 0.9) 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,107,44,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  text-align: center;
  padding: 40px;
}

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

.thank-you-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--molten-orange), var(--molten-glow));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
  font-size: 60px;
  color: white;
  border: 6px solid var(--chrome-border);
  box-shadow: 0 10px 40px rgba(255, 107, 44, 0.5);
}

.thank-you-content h1 {
  font-size: 56px;
  color: white;
  margin-bottom: 20px;
}

.thank-you-content p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.7;
}

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

.legal-section {
  padding: 120px 0 80px;
  min-height: 100vh;
}

.legal-section h1 {
  font-size: 48px;
  margin-bottom: 40px;
  color: var(--dark-metal);
}

.legal-content {
  max-width: 800px;
}

.legal-content h2 {
  font-size: 28px;
  margin: 40px 0 16px;
  color: var(--dark-metal);
}

.legal-content p {
  color: #555;
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content ul {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-content li {
  color: #555;
  margin-bottom: 8px;
  list-style: disc;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid #E8E8E8;
  aspect-ratio: 4/3;
  cursor: pointer;
}

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

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 24px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  color: white;
  font-size: 18px;
  margin-bottom: 4px;
}

.gallery-overlay p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.service-areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.area-card {
  background: white;
  border-radius: 12px;
  padding: 32px;
  border: 2px solid #E8E8E8;
  transition: all 0.3s ease;
}

.area-card:hover {
  border-color: var(--molten-orange);
  transform: translateY(-4px);
}

.area-card h3 {
  font-size: 24px;
  color: var(--dark-metal);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.area-card p {
  color: #666;
}

.page-hero {
  min-height: 45vh;
  display: flex;
  align-items: center;
  background: 
    linear-gradient(135deg, rgba(28, 28, 28, 0.93) 0%, rgba(44, 74, 110, 0.88) 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,107,44,0.08)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(255, 107, 44, 0.15) 0%, transparent 70%);
}

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

.page-hero h1 {
  font-size: clamp(36px, 6vw, 56px);
  color: white;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--electric-cyan);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb .current {
  color: rgba(255, 255, 255, 0.7);
}

.detail-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}

.detail-main h2 {
  font-size: 32px;
  color: var(--dark-metal);
  margin-bottom: 20px;
}

.detail-main p {
  color: #555;
  margin-bottom: 24px;
  font-size: 17px;
  line-height: 1.8;
}

.detail-sidebar {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.detail-card {
  background: var(--dark-metal);
  border-radius: 12px;
  padding: 32px;
  color: white;
}

.detail-card h3 {
  font-size: 22px;
  margin-bottom: 24px;
  color: white;
}

.detail-card .price {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--molten-orange);
  margin-bottom: 8px;
}

.detail-card .price span {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}

.detail-card .btn {
  width: 100%;
  margin-top: 20px;
}

.detail-includes {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.detail-includes h4 {
  font-size: 16px;
  margin-bottom: 16px;
  color: white;
}

.detail-includes li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}

.detail-includes li::before {
  content: '✓';
  color: var(--electric-cyan);
  font-weight: bold;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.process-step {
  position: relative;
  padding-left: 80px;
}

.process-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--molten-orange), var(--molten-glow));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Chakra Petch', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: white;
  border: 3px solid var(--chrome-border);
}

.process-step h3 {
  font-size: 20px;
  color: var(--dark-metal);
  margin-bottom: 8px;
}

.process-step p {
  color: #666;
}

/* Process steps styles inside steel section */
.section-steel .process-steps {
  gap: 40px;
}

.section-steel .process-step {
  padding-left: 0;
  text-align: center;
}

.section-steel .process-number {
  position: relative;
  left: auto;
  top: auto;
  margin: 0 auto 24px;
  width: 70px;
  height: 70px;
  font-size: 32px;
  border-color: var(--electric-cyan);
  box-shadow: 0 8px 30px rgba(0, 229, 255, 0.3);
}

.section-steel .process-step h3 {
  color: white;
  font-size: 22px;
  margin-bottom: 12px;
}

.section-steel .process-step p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.7;
}

.faq-item {
  background: white;
  border: 2px solid #E8E8E8;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Chakra Petch', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-metal);
  text-align: left;
}

.faq-icon {
  font-size: 24px;
  color: var(--molten-orange);
  transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 24px 24px;
  color: #555;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .detail-content {
    grid-template-columns: 1fr;
  }
  
  .detail-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
}