/* ===================================
   CSS RESET & BASE STYLES
   =================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #E0E0E0;
  background-color: #1A1A1A;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ===================================
   TYPOGRAPHY - INDUSTRIAL MODERN
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

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

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

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

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

p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #B8B8B8;
}

strong {
  font-weight: 600;
  color: #FFFFFF;
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===================================
   BUTTONS - METALLIC INDUSTRIAL
   =================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  border-radius: 50%;
  z-index: 0;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #C67A1E 0%, #D4902E 100%);
  color: #1A1A1A;
  border-color: #C67A1E;
  box-shadow: 0 4px 15px rgba(198, 122, 30, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #D4902E 0%, #E5A03E 100%);
  box-shadow: 0 6px 20px rgba(198, 122, 30, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #C67A1E;
  border: 2px solid #C67A1E;
}

.btn-secondary:hover {
  background: #C67A1E;
  color: #1A1A1A;
  box-shadow: 0 4px 15px rgba(198, 122, 30, 0.3);
}

/* ===================================
   HEADER - INDUSTRIAL DESIGN
   =================================== */

header {
  background: linear-gradient(180deg, #0D0D0D 0%, #1A1A1A 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #C67A1E;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(198, 122, 30, 0.3));
}

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

.main-nav a {
  font-weight: 600;
  font-size: 14px;
  color: #B8B8B8;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #C67A1E;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #C67A1E;
}

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

.header-cta {
  display: flex;
  gap: 16px;
}

/* ===================================
   MOBILE MENU - HAMBURGER NAVIGATION
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background: #C67A1E;
  color: #1A1A1A;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(198, 122, 30, 0.4);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #0D0D0D 0%, #1A1A1A 100%);
  z-index: 1200;
  transition: right 0.4s ease;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.7);
  border-left: 3px solid #C67A1E;
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
}

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

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

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

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

.mobile-nav a {
  font-size: 18px;
  font-weight: 600;
  color: #B8B8B8;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(198, 122, 30, 0.2);
  transition: all 0.3s ease;
}

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

/* ===================================
   HERO SECTION - INDUSTRIAL URBAN
   =================================== */

.hero {
  background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 50%, #2A2A2A 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #C67A1E;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(198, 122, 30, 0.03) 10px,
    rgba(198, 122, 30, 0.03) 20px
  );
  pointer-events: none;
}

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 20px;
  color: #B8B8B8;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.trust-badge {
  font-size: 14px;
  color: #C67A1E;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb {
  font-size: 14px;
  color: #7A7A7A;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb a {
  color: #C67A1E;
  transition: color 0.3s ease;
}

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

/* ===================================
   CARD LAYOUTS - FLEXBOX ONLY
   =================================== */

.card-container,
.services-grid,
.benefits-grid,
.pricing-cards,
.pricing-grid,
.testimonials-grid,
.stats-grid,
.team-grid,
.reasons-grid,
.methods-grid,
.info-grid,
.suggestions-grid,
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.service-card,
.benefit-card,
.pricing-card,
.testimonial-card,
.stat,
.team-member,
.reason-card,
.method-card,
.info-item,
.suggestion-card {
  flex: 1 1 300px;
  max-width: 380px;
  background: linear-gradient(135deg, #1F1F1F 0%, #2A2A2A 100%);
  padding: 32px;
  border: 2px solid rgba(198, 122, 30, 0.3);
  border-radius: 0;
  position: relative;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.service-card::before,
.benefit-card::before,
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: #C67A1E;
  transition: height 0.3s ease;
}

.service-card:hover,
.benefit-card:hover,
.pricing-card:hover,
.reason-card:hover,
.method-card:hover,
.suggestion-card:hover {
  border-color: #C67A1E;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(198, 122, 30, 0.3);
}

.service-card:hover::before,
.benefit-card:hover::before,
.pricing-card:hover::before {
  height: 100%;
}

.service-card h3,
.benefit-card h3,
.pricing-card h3,
.reason-card h3,
.method-card h3 {
  color: #C67A1E;
  margin-bottom: 16px;
  font-size: 20px;
}

.service-card p,
.benefit-card p,
.reason-card p,
.method-card p {
  color: #B8B8B8;
  line-height: 1.6;
  margin-bottom: 20px;
}

.price {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #C67A1E;
  margin: 20px 0;
  font-family: 'Montserrat', sans-serif;
}

/* Featured Card */
.featured {
  border: 3px solid #C67A1E;
  box-shadow: 0 8px 30px rgba(198, 122, 30, 0.4);
  position: relative;
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #C67A1E;
  color: #1A1A1A;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.savings {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #C67A1E;
  color: #1A1A1A;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
}

/* ===================================
   PROBLEM-SOLUTION SECTION
   =================================== */

.problem-solution {
  padding: 60px 20px;
  background: #1A1A1A;
}

.problem-solution .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.problem,
.solution {
  padding: 40px;
  background: linear-gradient(135deg, #1F1F1F 0%, #2A2A2A 100%);
  border-left: 4px solid #C67A1E;
  position: relative;
}

.problem h2,
.solution h2 {
  color: #C67A1E;
  margin-bottom: 20px;
}

.problem p,
.solution p {
  font-size: 18px;
  color: #B8B8B8;
  line-height: 1.8;
}

/* ===================================
   STEPS/PROCESS - FLEXBOX LAYOUT
   =================================== */

.steps,
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.step,
.step-detail {
  flex: 1 1 280px;
  max-width: 350px;
  background: linear-gradient(135deg, #1F1F1F 0%, #2A2A2A 100%);
  padding: 32px;
  border: 2px solid rgba(198, 122, 30, 0.3);
  position: relative;
  transition: all 0.3s ease;
}

.step:hover,
.step-detail:hover {
  border-color: #C67A1E;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(198, 122, 30, 0.3);
}

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

.step h3,
.step-detail h3 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.step p,
.step-detail p {
  color: #B8B8B8;
  line-height: 1.6;
}

.step ul,
.step-detail ul {
  list-style: none;
  margin-top: 20px;
}

.step ul li,
.step-detail ul li {
  color: #B8B8B8;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.step ul li::before,
.step-detail ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #C67A1E;
  font-weight: 700;
}

/* ===================================
   STATISTICS SECTION
   =================================== */

.stats {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 100%);
  text-align: center;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.stat {
  flex: 1 1 200px;
  max-width: 250px;
  padding: 32px;
  background: linear-gradient(135deg, #1F1F1F 0%, #2A2A2A 100%);
  border: 2px solid rgba(198, 122, 30, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.stat:hover {
  border-color: #C67A1E;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(198, 122, 30, 0.3);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #C67A1E;
  font-family: 'Montserrat', sans-serif;
  display: block;
}

.stat-label {
  font-size: 16px;
  color: #B8B8B8;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}

/* ===================================
   TESTIMONIALS - READABLE CONTRAST
   =================================== */

.testimonials {
  padding: 60px 20px;
  background: #1A1A1A;
}

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

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 400px;
  max-width: 550px;
  background: #FFFFFF;
  padding: 32px;
  border-left: 4px solid #C67A1E;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 18px;
  color: #2A2A2A;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card .author {
  display: block;
  font-weight: 600;
  color: #1A1A1A;
  font-size: 16px;
  text-align: right;
  font-style: normal;
}

.testimonial-card .rating {
  display: block;
  color: #C67A1E;
  font-weight: 700;
  font-size: 14px;
  text-align: right;
  margin-top: 8px;
}

/* Single Testimonial */
.testimonial-single {
  padding: 60px 20px;
  background: #1A1A1A;
  text-align: center;
}

.testimonial-single blockquote {
  max-width: 800px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 48px;
  border-left: 4px solid #C67A1E;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.testimonial-single blockquote p {
  font-size: 24px;
  color: #2A2A2A;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-single cite {
  display: block;
  font-weight: 600;
  color: #1A1A1A;
  font-size: 18px;
  font-style: normal;
  margin-top: 16px;
}

/* ===================================
   PRICING SECTION
   =================================== */

.pricing-preview,
.pricing-cards {
  padding: 60px 20px;
  background: #1A1A1A;
  text-align: center;
}

.section-subtitle {
  font-size: 18px;
  color: #B8B8B8;
  margin-bottom: 40px;
}

.pricing-card {
  flex: 1 1 300px;
  max-width: 380px;
  background: linear-gradient(135deg, #1F1F1F 0%, #2A2A2A 100%);
  padding: 40px;
  border: 2px solid rgba(198, 122, 30, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
}

.pricing-card h3 {
  font-size: 24px;
  color: #C67A1E;
  margin-bottom: 12px;
}

.card-type {
  font-size: 14px;
  color: #7A7A7A;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.pricing-card .price {
  font-size: 48px;
  color: #C67A1E;
  font-weight: 700;
  margin: 20px 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.pricing-card .price .amount {
  font-size: 48px;
}

.pricing-card .price .period {
  font-size: 18px;
  color: #B8B8B8;
}

.features {
  list-style: none;
  text-align: left;
  margin: 24px 0;
}

.features li {
  padding: 12px 0;
  color: #B8B8B8;
  border-bottom: 1px solid rgba(198, 122, 30, 0.2);
  font-size: 16px;
}

.delivery,
.note {
  font-size: 14px;
  color: #7A7A7A;
  margin-top: 16px;
}

.trust-element,
.trust-note,
.guarantee {
  font-size: 14px;
  color: #C67A1E;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 24px;
}

/* ===================================
   SERVICE DETAIL PAGE
   =================================== */

.service-detail {
  flex: 1 1 400px;
  max-width: 500px;
  background: linear-gradient(135deg, #1F1F1F 0%, #2A2A2A 100%);
  padding: 40px;
  border: 2px solid rgba(198, 122, 30, 0.3);
  border-left: 4px solid #C67A1E;
  margin-bottom: 32px;
  transition: all 0.3s ease;
}

.service-detail:hover {
  border-color: #C67A1E;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(198, 122, 30, 0.3);
}

.service-detail h2 {
  color: #C67A1E;
  margin-bottom: 20px;
}

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

.service-detail ul li {
  padding: 12px 0;
  padding-left: 24px;
  color: #B8B8B8;
  position: relative;
  border-bottom: 1px solid rgba(198, 122, 30, 0.2);
}

.service-detail ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #C67A1E;
  font-weight: 700;
}

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

.faq {
  padding: 60px 20px;
  background: #1A1A1A;
}

.faq h2 {
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  background: linear-gradient(135deg, #1F1F1F 0%, #2A2A2A 100%);
  padding: 32px;
  margin-bottom: 20px;
  border: 2px solid rgba(198, 122, 30, 0.3);
  border-left: 4px solid #C67A1E;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #C67A1E;
  box-shadow: 0 4px 20px rgba(198, 122, 30, 0.3);
}

.faq-item h3 {
  color: #C67A1E;
  margin-bottom: 16px;
  font-size: 20px;
}

.faq-item p {
  color: #B8B8B8;
  line-height: 1.6;
}

/* ===================================
   CTA SECTIONS
   =================================== */

.cta,
.cta-final {
  padding: 80px 20px;
  background: linear-gradient(135deg, #C67A1E 0%, #D4902E 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before,
.cta-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(0, 0, 0, 0.05) 10px,
    rgba(0, 0, 0, 0.05) 20px
  );
  pointer-events: none;
}

.cta h2,
.cta-final h2 {
  color: #1A1A1A;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta p,
.cta-final p {
  color: #2A2A2A;
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta .btn-primary {
  background: #1A1A1A;
  color: #C67A1E;
  border-color: #1A1A1A;
}

.cta .btn-primary:hover {
  background: #0D0D0D;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.cta .btn-secondary {
  background: transparent;
  color: #1A1A1A;
  border: 2px solid #1A1A1A;
}

.cta .btn-secondary:hover {
  background: #1A1A1A;
  color: #C67A1E;
}

/* ===================================
   CONTACT PAGE
   =================================== */

.contact-info {
  padding: 60px 20px;
  background: #1A1A1A;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.info-item {
  flex: 1 1 280px;
  max-width: 350px;
  background: linear-gradient(135deg, #1F1F1F 0%, #2A2A2A 100%);
  padding: 32px;
  border: 2px solid rgba(198, 122, 30, 0.3);
  border-left: 4px solid #C67A1E;
}

.info-item h3 {
  color: #C67A1E;
  margin-bottom: 16px;
}

.info-item p {
  color: #B8B8B8;
  line-height: 1.6;
}

/* Contact Form */
.contact-form-section {
  padding: 60px 20px;
  background: #1A1A1A;
}

.form-wrapper {
  max-width: 600px;
  margin: 40px auto 0;
  background: linear-gradient(135deg, #1F1F1F 0%, #2A2A2A 100%);
  padding: 40px;
  border: 2px solid rgba(198, 122, 30, 0.3);
  border-left: 4px solid #C67A1E;
}

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

.form-field label {
  display: block;
  color: #C67A1E;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.input-field {
  width: 100%;
  padding: 14px;
  background: #0D0D0D;
  border: 2px solid rgba(198, 122, 30, 0.3);
  color: #E0E0E0;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.input-field:focus {
  outline: none;
  border-color: #C67A1E;
  box-shadow: 0 0 10px rgba(198, 122, 30, 0.3);
}

.input-field::placeholder {
  color: #7A7A7A;
}

textarea.input-field {
  resize: vertical;
  min-height: 120px;
}

select.input-field {
  cursor: pointer;
}

.form-field.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-field.checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-top: 2px;
}

.form-field.checkbox label {
  margin-bottom: 0;
  color: #B8B8B8;
  font-weight: 400;
  text-transform: none;
  font-size: 14px;
  cursor: pointer;
  flex: 1;
}

.form-note {
  font-size: 12px;
  color: #7A7A7A;
  margin-top: 16px;
}

/* ===================================
   TEAM SECTION
   =================================== */

.team {
  padding: 60px 20px;
  background: #1A1A1A;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.team-member {
  flex: 1 1 250px;
  max-width: 280px;
  background: linear-gradient(135deg, #1F1F1F 0%, #2A2A2A 100%);
  padding: 32px;
  border: 2px solid rgba(198, 122, 30, 0.3);
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover {
  border-color: #C67A1E;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(198, 122, 30, 0.3);
}

.team-member h3 {
  color: #C67A1E;
  margin-bottom: 8px;
  font-size: 20px;
}

.role {
  display: block;
  font-size: 14px;
  color: #7A7A7A;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.team-member p {
  color: #B8B8B8;
  font-size: 14px;
  line-height: 1.6;
}

.team-note {
  text-align: center;
  font-size: 16px;
  color: #B8B8B8;
  margin-top: 32px;
}

/* ===================================
   MISSION/VISION SECTION
   =================================== */

.mission-vision {
  padding: 60px 20px;
  background: #1A1A1A;
}

.mission,
.vision,
.values {
  background: linear-gradient(135deg, #1F1F1F 0%, #2A2A2A 100%);
  padding: 40px;
  margin-bottom: 32px;
  border: 2px solid rgba(198, 122, 30, 0.3);
  border-left: 4px solid #C67A1E;
}

.mission h2,
.vision h2,
.values h2 {
  color: #C67A1E;
  margin-bottom: 20px;
}

.mission p,
.vision p {
  color: #B8B8B8;
  font-size: 18px;
  line-height: 1.8;
}

.values ul {
  list-style: none;
}

.values ul li {
  padding: 16px 0;
  padding-left: 24px;
  color: #B8B8B8;
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  border-bottom: 1px solid rgba(198, 122, 30, 0.2);
}

.values ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #C67A1E;
  font-weight: 700;
}

/* Story Section */
.story {
  padding: 60px 20px;
  background: #1A1A1A;
}

.story p {
  max-width: 800px;
  margin: 0 auto 24px;
  font-size: 18px;
  color: #B8B8B8;
  line-height: 1.8;
}

.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.milestones span {
  padding: 12px 24px;
  background: linear-gradient(135deg, #1F1F1F 0%, #2A2A2A 100%);
  border: 2px solid rgba(198, 122, 30, 0.3);
  color: #C67A1E;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* ===================================
   LEGAL CONTENT PAGES
   =================================== */

.legal-content {
  padding: 60px 20px;
  background: #1A1A1A;
}

.legal-content h1 {
  margin-bottom: 16px;
}

.last-updated {
  font-size: 14px;
  color: #7A7A7A;
  margin-bottom: 40px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1F1F1F 0%, #2A2A2A 100%);
  padding: 48px;
  border: 2px solid rgba(198, 122, 30, 0.3);
  border-left: 4px solid #C67A1E;
}

.content-wrapper h2 {
  color: #C67A1E;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 28px;
}

.content-wrapper h3 {
  color: #FFFFFF;
  margin-top: 24px;
  margin-bottom: 16px;
  font-size: 20px;
}

.content-wrapper p {
  color: #B8B8B8;
  line-height: 1.8;
  margin-bottom: 20px;
}

.content-wrapper ul,
.content-wrapper ol {
  margin: 20px 0;
  padding-left: 24px;
}

.content-wrapper ul li,
.content-wrapper ol li {
  color: #B8B8B8;
  line-height: 1.8;
  margin-bottom: 12px;
  padding-left: 12px;
}

.content-wrapper ul {
  list-style: none;
}

.content-wrapper ul li {
  position: relative;
}

.content-wrapper ul li::before {
  content: '▸';
  position: absolute;
  left: -12px;
  color: #C67A1E;
  font-weight: 700;
}

.content-wrapper ol {
  list-style: decimal;
}

.content-wrapper table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.content-wrapper table th,
.content-wrapper table td {
  padding: 16px;
  border: 1px solid rgba(198, 122, 30, 0.3);
  text-align: left;
}

.content-wrapper table th {
  background: #C67A1E;
  color: #1A1A1A;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.content-wrapper table td {
  color: #B8B8B8;
}

.content-wrapper a {
  color: #C67A1E;
  text-decoration: underline;
}

.content-wrapper a:hover {
  color: #D4902E;
}

/* ===================================
   THANK YOU PAGE
   =================================== */

.thank-you-hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 50%, #2A2A2A 100%);
  text-align: center;
  border-bottom: 3px solid #C67A1E;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: #C67A1E;
  color: #1A1A1A;
  font-size: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(198, 122, 30, 0.4);
}

.confirmation {
  font-size: 16px;
  color: #C67A1E;
  font-weight: 600;
  margin-top: 20px;
}

.next-steps {
  padding: 60px 20px;
  background: #1A1A1A;
}

.timeline {
  display: block;
  font-size: 14px;
  color: #C67A1E;
  font-weight: 600;
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.average-response {
  text-align: center;
  font-size: 18px;
  color: #C67A1E;
  font-weight: 600;
  margin-top: 40px;
}

.while-waiting {
  padding: 60px 20px;
  background: #1A1A1A;
  text-align: center;
}

.back-navigation {
  padding: 60px 20px;
  background: #1A1A1A;
  text-align: center;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 32px;
}

.nav-link {
  padding: 14px 32px;
  background: linear-gradient(135deg, #1F1F1F 0%, #2A2A2A 100%);
  border: 2px solid rgba(198, 122, 30, 0.3);
  color: #C67A1E;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-block;
}

.nav-link:hover {
  border-color: #C67A1E;
  background: #C67A1E;
  color: #1A1A1A;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(198, 122, 30, 0.4);
}

/* ===================================
   GUARANTEE SECTION
   =================================== */

.guarantee {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1F1F1F 0%, #2A2A2A 100%);
  border-top: 3px solid #C67A1E;
  border-bottom: 3px solid #C67A1E;
  text-align: center;
}

.guarantee h2 {
  color: #C67A1E;
  margin-bottom: 20px;
}

.guarantee p {
  max-width: 700px;
  margin: 0 auto 24px;
  font-size: 18px;
  color: #B8B8B8;
  line-height: 1.8;
}

.guarantee ul {
  list-style: none;
  max-width: 600px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.guarantee ul li {
  padding: 16px;
  background: #1A1A1A;
  border-left: 4px solid #C67A1E;
  color: #B8B8B8;
  text-align: left;
}

/* ===================================
   METHODOLOGY SECTION
   =================================== */

.methodology {
  padding: 60px 20px;
  background: #1A1A1A;
}

.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.method-card {
  flex: 1 1 250px;
  max-width: 280px;
  background: linear-gradient(135deg, #1F1F1F 0%, #2A2A2A 100%);
  padding: 32px;
  border: 2px solid rgba(198, 122, 30, 0.3);
  border-top: 4px solid #C67A1E;
  text-align: center;
}

/* ===================================
   BENEFITS DETAILED SECTION
   =================================== */

.benefits-detailed {
  padding: 60px 20px;
  background: #1A1A1A;
}

.benefit-stat {
  flex: 1 1 300px;
  max-width: 380px;
  background: linear-gradient(135deg, #1F1F1F 0%, #2A2A2A 100%);
  padding: 40px;
  border: 2px solid rgba(198, 122, 30, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.stat-big {
  font-size: 60px;
  font-weight: 700;
  color: #C67A1E;
  font-family: 'Montserrat', sans-serif;
  display: block;
  margin-bottom: 16px;
}

.benefit-stat h3 {
  color: #FFFFFF;
  font-size: 20px;
  margin-bottom: 12px;
}

.benefit-stat p {
  color: #B8B8B8;
  line-height: 1.6;
}

/* ===================================
   PROCESS OVERVIEW
   =================================== */

.process-overview {
  padding: 60px 20px;
  background: #1A1A1A;
}

.intro {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 20px;
  color: #B8B8B8;
  text-align: center;
  line-height: 1.8;
}

/* ===================================
   MAP SECTION
   =================================== */

.map-section {
  padding: 60px 20px;
  background: #1A1A1A;
}

.map-info {
  max-width: 700px;
  margin: 32px auto 0;
  background: linear-gradient(135deg, #1F1F1F 0%, #2A2A2A 100%);
  padding: 32px;
  border: 2px solid rgba(198, 122, 30, 0.3);
  border-left: 4px solid #C67A1E;
}

.map-info p {
  color: #B8B8B8;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ===================================
   FOOTER - INDUSTRIAL DESIGN
   =================================== */

footer {
  background: linear-gradient(180deg, #0D0D0D 0%, #000000 100%);
  padding: 60px 20px 20px;
  border-top: 3px solid #C67A1E;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1 1 200px;
  max-width: 280px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 8px rgba(198, 122, 30, 0.3));
}

.footer-col h4 {
  color: #C67A1E;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p {
  color: #7A7A7A;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-col nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col nav a {
  color: #7A7A7A;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-col nav a:hover {
  color: #C67A1E;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(198, 122, 30, 0.3);
}

.footer-bottom p {
  color: #7A7A7A;
  font-size: 14px;
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #1A1A1A 0%, #0D0D0D 100%);
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  border-top: 3px solid #C67A1E;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 300px;
  color: #B8B8B8;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-buttons button {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
}

.cookie-accept {
  background: #C67A1E;
  color: #1A1A1A;
  border-color: #C67A1E;
}

.cookie-accept:hover {
  background: #D4902E;
  box-shadow: 0 4px 15px rgba(198, 122, 30, 0.4);
}

.cookie-reject {
  background: transparent;
  color: #7A7A7A;
  border: 2px solid #7A7A7A;
}

.cookie-reject:hover {
  color: #B8B8B8;
  border-color: #B8B8B8;
}

.cookie-settings {
  background: transparent;
  color: #C67A1E;
  border: 2px solid #C67A1E;
}

.cookie-settings:hover {
  background: #C67A1E;
  color: #1A1A1A;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
  padding: 40px;
  max-width: 600px;
  width: 100%;
  border: 3px solid #C67A1E;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 24px;
  color: #C67A1E;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.cookie-modal h3 {
  color: #C67A1E;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  margin-bottom: 20px;
  background: #0D0D0D;
  border-left: 4px solid #C67A1E;
}

.cookie-category h4 {
  color: #FFFFFF;
  margin-bottom: 12px;
  font-size: 16px;
}

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

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

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

.cookie-toggle label {
  color: #B8B8B8;
  font-size: 14px;
  cursor: pointer;
}

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

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

.cookie-save {
  padding: 12px 24px;
  background: #C67A1E;
  color: #1A1A1A;
  border: 2px solid #C67A1E;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.cookie-save:hover {
  background: #D4902E;
  box-shadow: 0 4px 15px rgba(198, 122, 30, 0.4);
}

/* ===================================
   RESPONSIVE DESIGN - MOBILE FIRST
   =================================== */

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Header */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-cta {
    display: none;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  /* Cards & Grids */
  .card-container,
  .services-grid,
  .benefits-grid,
  .pricing-cards,
  .pricing-grid,
  .testimonials-grid,
  .stats-grid,
  .team-grid,
  .reasons-grid,
  .methods-grid,
  .info-grid,
  .suggestions-grid {
    flex-direction: column;
  }
  
  .service-card,
  .benefit-card,
  .pricing-card,
  .testimonial-card,
  .stat,
  .team-member,
  .reason-card,
  .method-card,
  .info-item,
  .suggestion-card,
  .service-detail,
  .benefit-stat {
    max-width: 100%;
  }
  
  /* Steps */
  .steps,
  .process-steps {
    flex-direction: column;
  }
  
  .step,
  .step-detail {
    max-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-col {
    max-width: 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  /* CTA Buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  
  /* Content Wrapper */
  .content-wrapper {
    padding: 32px 20px;
  }
  
  /* Form */
  .form-wrapper {
    padding: 32px 20px;
  }
  
  /* Pricing Cards */
  .pricing-card .price {
    font-size: 36px;
  }
  
  /* Stats */
  .stat-number {
    font-size: 36px;
  }
  
  .stat-big {
    font-size: 48px;
  }
  
  /* Mission/Vision */
  .mission,
  .vision,
  .values {
    padding: 24px;
  }
  
  /* Sections */
  .section {
    padding: 32px 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    max-width: 960px;
  }
  
  .hero h1 {
    font-size: 48px;
  }
}

@media (min-width: 1025px) {
  .container {
    max-width: 1200px;
  }
}

/* ===================================
   ANIMATIONS & TRANSITIONS
   =================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.hero-content {
  animation: fadeInUp 0.8s ease;
}

.success-icon {
  animation: pulse 2s ease infinite;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus States for Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #C67A1E;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
}