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

body {
  font-family: 'Inter', sans-serif;
  background: #f5f5f0;
  color: #1a1a1a;
  line-height: 1.6;
}

html { scroll-behavior: smooth; }

/* Navigation - Sticky and Bold */
.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 80px;
  position: sticky;
  top: 0;
  background: #f5f5f0;
  border-bottom: 3px solid #1a1a1a;
  z-index: 100;
}

.nav-mark {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 2px;
  text-decoration: none;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
}

.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nav-btn {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-decoration: none;
  color: white;
  background: #1a1a1a;
  border: none;
  padding: 12px 32px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
}

.nav-btn:hover {
  background: #0d0d0d;
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* Hero - Dramatic and Asymmetrical */
.module-hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 80px;
  gap: 80px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 60px;
}

.hero-logo {
  flex: 0 0 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: -100px;
}

.logo-hero {
  width: 350px;
  height: 350px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-text h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 92px;
  font-weight: 900;
  line-height: 1;
  color: #f5f5f0;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.hero-text p {
  font-size: 20px;
  color: #d0d0d0;
  max-width: 500px;
  font-weight: 500;
}

/* Primary Button - Bold and Oversized */
.btn-primary {
  background: #f5f5f0;
  color: #1a1a1a;
  border: none;
  padding: 20px 48px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  max-width: fit-content;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-primary:hover {
  background: #1a1a1a;
  color: #f5f5f0;
  transform: scale(1.08);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* Core Modules */
.module {
  padding: 100px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Stats - Bold Cards */
.module-stats {
  background: #1a1a1a;
  padding: 120px 80px;
}

.stats-bold {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.stat-big-card {
  background: transparent;
  border: 3px solid #f5f5f0;
  padding: 50px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-big-card:hover {
  background: #f5f5f0;
  transform: translateY(-15px);
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 68px;
  font-weight: 900;
  color: #f5f5f0;
  margin-bottom: 15px;
  line-height: 1;
}

.stat-big-card:hover .stat-number {
  color: #1a1a1a;
}

.stat-label {
  font-size: 13px;
  font-weight: 800;
  color: #d0d0d0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.stat-big-card:hover .stat-label {
  color: #1a1a1a;
}

/* Services - Asymmetrical Magazine Layout */
.module-services {
  background: #f5f5f0;
  padding: 100px 80px;
}

.services-magazine {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.service-block {
  padding: 50px 60px;
  border: 3px solid #1a1a1a;
  background: white;
  transition: all 0.3s ease;
}

.service-block.left {
  margin-right: 200px;
}

.service-block.right {
  margin-left: 200px;
}

.service-block:hover {
  background: #1a1a1a;
  color: #f5f5f0;
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.service-block h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.service-block p {
  font-size: 16px;
  margin-bottom: 25px;
  line-height: 1.7;
}

.service-block:hover p {
  color: #f5f5f0;
}

.price-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 900;
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #1a1a1a;
  background: transparent;
}

.service-block:hover .price-tag {
  border-color: #f5f5f0;
  color: #f5f5f0;
}

/* Process - Bold Text Layout */
.module-process {
  background: white;
  padding: 120px 80px;
}

.process-bold {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.process-item {
  padding: 40px;
  border-left: 5px solid #1a1a1a;
  background: #f5f5f0;
  transition: all 0.3s ease;
}

.process-item:hover {
  background: #1a1a1a;
  color: #f5f5f0;
  border-left-color: #f5f5f0;
  transform: translateX(15px);
}

.process-item h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.process-item p {
  font-size: 15px;
  line-height: 1.8;
}

.process-item:hover p {
  color: #f5f5f0;
}

/* Warranty - Bold Cards */
.module-warranty {
  background: #f5f5f0;
  padding: 120px 80px;
}

.section-title-bold {
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 80px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.warranty-bold {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.warranty-card {
  background: white;
  padding: 50px 40px;
  border: 3px solid #1a1a1a;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.warranty-card:hover {
  background: #1a1a1a;
  color: #f5f5f0;
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.warranty-card.featured {
  transform: scale(1.08);
  background: #1a1a1a;
  color: #f5f5f0;
}

.warranty-card.featured:hover {
  background: #0d0d0d;
}

.warranty-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.warranty-duration {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1;
}

.warranty-card p {
  font-size: 14px;
  line-height: 1.7;
}

.badge {
  display: inline-block;
  background: #f5f5f0;
  color: #1a1a1a;
  font-weight: 800;
  font-size: 11px;
  padding: 8px 16px;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.warranty-card.featured .badge {
  background: #f5f5f0;
  color: #1a1a1a;
}

/* Testimonials - Bold Quotes */
.module-testimonials {
  background: #1a1a1a;
  padding: 120px 80px;
  color: #f5f5f0;
}

.testimonials-bold {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

.quote-card {
  background: transparent;
  border-left: 4px solid #f5f5f0;
  padding-left: 40px;
  padding-right: 0;
  transition: all 0.3s ease;
}

.quote-card:hover {
  border-left: 4px solid #f5f5f0;
  padding-left: 50px;
}

.quote-card p {
  font-size: 17px;
  margin-bottom: 20px;
  line-height: 1.8;
  color: #f5f5f0;
  font-style: italic;
  font-weight: 500;
}

.quote-card footer {
  font-size: 13px;
  color: #a0a0a0;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Contact - Asymmetrical and Bold */
.module-contact {
  background: white;
  padding: 120px 80px;
}

.contact-bold {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 100px;
  align-items: center;
}

.contact-main h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.contact-item {
  padding-bottom: 30px;
  border-bottom: 2px solid #e0e0e0;
}

.contact-label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.contact-item p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

.contact-item a {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.contact-item a:hover {
  text-decoration: underline;
  color: #0d0d0d;
}

.contact-cta {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
  padding: 50px;
  background: #f5f5f0;
  border: 3px dashed #1a1a1a;
}

.btn-primary-large {
  background: #1a1a1a;
  color: #f5f5f0;
  border: none;
  padding: 24px 40px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
}

.btn-primary-large:hover {
  background: #f5f5f0;
  color: #1a1a1a;
  border: 3px solid #1a1a1a;
  transform: scale(1.05);
}

.contact-note {
  font-size: 12px;
  color: #666;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Modal - Bold and Dramatic */
.modal-bold {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 26, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(4px);
}

.modal-box-bold {
  background: white;
  padding: 60px;
  width: 90%;
  max-width: 600px;
  position: relative;
  border: 3px solid #1a1a1a;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.modal-box-bold .close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  font-size: 40px;
  cursor: pointer;
  color: #1a1a1a;
  font-weight: 700;
  transition: all 0.3s ease;
}

.modal-box-bold .close:hover {
  transform: scale(1.2);
  color: #0d0d0d;
}

.modal-box-bold h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.modal-box-bold form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.modal-box-bold input,
.modal-box-bold textarea {
  padding: 16px;
  border: 2px solid #e0e0e0;
  font-family: inherit;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #f9f9f9;
}

.modal-box-bold input:focus,
.modal-box-bold textarea:focus {
  outline: none;
  border-color: #1a1a1a;
  background: white;
  box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

.btn-submit {
  background: #1a1a1a;
  color: #f5f5f0;
  border: none;
  padding: 16px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  cursor: pointer;
  text-transform: uppercase;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: #f5f5f0;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
  transform: scale(1.02);
}

#success {
  text-align: center;
}

#success h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 900;
  margin: 20px 0;
  text-transform: uppercase;
  color: #1a1a1a;
}

#success p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .nav-top { padding: 20px 40px; }
  .module { padding: 80px 40px; }
  .module-hero { padding: 80px 40px; gap: 40px; }
  .hero-text h1 { font-size: 64px; }
  .hero-logo { flex: 0 0 250px; }
  .logo-hero { width: 250px; height: 250px; }
  .stats-bold { grid-template-columns: repeat(2, 1fr); }
  .services-magazine { gap: 40px; }
  .service-block.left { margin-right: 100px; }
  .service-block.right { margin-left: 100px; }
  .process-bold { grid-template-columns: 1fr; }
  .warranty-bold { grid-template-columns: repeat(2, 1fr); }
  .warranty-card.featured { grid-column: 1 / -1; }
  .testimonials-bold { grid-template-columns: 1fr; }
  .contact-bold { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 768px) {
  .nav-top { padding: 15px 20px; }
  .nav-mark { font-size: 14px; }
  .nav-btn { padding: 10px 20px; font-size: 11px; }
  .module-hero { flex-direction: column; padding: 60px 20px; min-height: auto; }
  .hero-content { flex-direction: column; gap: 40px; }
  .hero-logo { flex: 1; margin-top: 0; }
  .logo-hero { width: 200px; height: 200px; }
  .hero-text h1 { font-size: 42px; }
  .hero-text p { font-size: 16px; }
  .module { padding: 60px 20px; }
  .section-title-bold { font-size: 36px; margin-bottom: 50px; }
  .stats-bold { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-big-card { padding: 30px 20px; }
  .stat-number { font-size: 48px; }
  .service-block { padding: 40px 30px; }
  .service-block.left { margin-right: 0; }
  .service-block.right { margin-left: 0; }
  .process-item { padding: 30px; }
  .process-item h4 { font-size: 16px; }
  .warranty-bold { grid-template-columns: 1fr; }
  .warranty-card { padding: 40px 30px; }
  .warranty-card.featured { transform: scale(1); }
  .testimonials-bold { grid-template-columns: 1fr; }
  .contact-bold { gap: 40px; }
  .contact-main h2 { font-size: 36px; }
  .modal-box-bold { padding: 40px; }
  .modal-box-bold h3 { font-size: 24px; }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 32px; }
  .stat-big-card { padding: 20px 15px; }
  .stat-number { font-size: 36px; }
  .section-title-bold { font-size: 28px; }
  .service-block h3 { font-size: 20px; }
  .contact-item p { font-size: 16px; }
}
