/* ============================================
   CRISP SHADE - INDUSTRIAL MODERN DESIGN
   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', Arial, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #1a1a1a;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style-position: inside;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #ecf0f1;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h2 {
  font-size: 32px;
  color: #F8B84E;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

h3 {
  font-size: 24px;
  color: #ecf0f1;
}

h4 {
  font-size: 18px;
  color: #bdc3c7;
}

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

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

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

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

/* ============================================
   HEADER - INDUSTRIAL METAL AESTHETIC
   ============================================ */

header {
  background: linear-gradient(135deg, #2B5B84 0%, #1a1a1a 100%);
  padding: 20px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 3px solid #F8B84E;
}

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

.logo img {
  height: 50px;
  width: auto;
}

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

.main-nav a {
  color: #ecf0f1;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a:hover {
  color: #F8B84E;
  border-color: #F8B84E;
  background: rgba(248, 184, 78, 0.1);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #F8B84E;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

/* ============================================
   MOBILE MENU - INDUSTRIAL SLIDE-IN
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background: #2B5B84;
  border: 2px solid #F8B84E;
  color: #F8B84E;
  font-size: 28px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #F8B84E;
  color: #1a1a1a;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #2B5B84 0%, #1a1a1a 100%);
  z-index: 1100;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
  border-left: 3px solid #F8B84E;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #F8B84E;
  color: #F8B84E;
  font-size: 28px;
  width: 45px;
  height: 45px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #F8B84E;
  color: #1a1a1a;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #ecf0f1;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  padding: 16px 20px;
  border: 2px solid #4A90A4;
  border-radius: 4px;
  background: rgba(74, 144, 164, 0.1);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.mobile-nav a:hover,
.mobile-nav a:active {
  background: #F8B84E;
  color: #1a1a1a;
  border-color: #F8B84E;
  transform: translateX(10px);
}

/* ============================================
   COOKIE CONSENT BANNER - INDUSTRIAL
   ============================================ */

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

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

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

.cookie-text {
  flex: 1;
  min-width: 250px;
  color: #bdc3c7;
  font-size: 14px;
}

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

.cookie-btn {
  padding: 12px 24px;
  border: 2px solid #F8B84E;
  background: transparent;
  color: #F8B84E;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  background: #F8B84E;
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(248, 184, 78, 0.3);
}

.cookie-btn.primary {
  background: #F8B84E;
  color: #1a1a1a;
}

.cookie-btn.primary:hover {
  background: #2B5B84;
  color: #F8B84E;
  border-color: #2B5B84;
}

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

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

.cookie-modal-content {
  background: linear-gradient(135deg, #2B5B84 0%, #1a1a1a 100%);
  padding: 40px;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  border: 3px solid #F8B84E;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.cookie-modal h3 {
  color: #F8B84E;
  margin-bottom: 24px;
  font-size: 24px;
}

.cookie-category {
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(74, 144, 164, 0.1);
  border-left: 3px solid #4A90A4;
  border-radius: 4px;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ecf0f1;
  font-weight: 600;
  cursor: pointer;
}

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

.cookie-category p {
  margin-top: 8px;
  font-size: 14px;
  color: #95a5a6;
}

/* ============================================
   BUTTONS - INDUSTRIAL METAL STYLE
   ============================================ */

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.btn-primary {
  background: #F8B84E;
  color: #1a1a1a;
  border-color: #F8B84E;
  box-shadow: 0 4px 12px rgba(248, 184, 78, 0.3);
}

.btn-primary:hover {
  background: transparent;
  color: #F8B84E;
  border-color: #F8B84E;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(248, 184, 78, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #ecf0f1;
  border-color: #4A90A4;
}

.btn-secondary:hover {
  background: #4A90A4;
  color: #1a1a1a;
  border-color: #4A90A4;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(74, 144, 164, 0.4);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

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

.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2B5B84 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid #F8B84E;
}

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

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

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

.subheadline {
  font-size: 24px;
  color: #F8B84E;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.problem-statement {
  font-size: 18px;
  color: #bdc3c7;
  line-height: 1.8;
  margin-bottom: 32px;
}

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

.trust-item {
  color: #ecf0f1;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border: 2px solid #4A90A4;
  border-radius: 4px;
  background: rgba(74, 144, 164, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.card-container,
.problem-grid,
.benefit-grid,
.services-grid,
.guarantee-grid,
.testimonial-grid,
.pricing-grid,
.contact-grid,
.differentiator-grid,
.values-grid,
.principles-grid,
.factors-grid,
.discount-grid,
.faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 40px;
}

.problem-card,
.benefit-card,
.service-card,
.guarantee-card,
.testimonial-card,
.price-card,
.contact-card,
.diff-card,
.value-card,
.principle-card,
.factor-card,
.discount-card,
.faq-item,
.guarantee-item,
.standard-card,
.team-member {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, #2B5B84 0%, #1a1a1a 100%);
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #4A90A4;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.problem-card::before,
.benefit-card::before,
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #F8B84E;
  border-radius: 8px 0 0 8px;
}

.problem-card:hover,
.benefit-card:hover,
.service-card:hover,
.guarantee-card:hover,
.contact-card:hover,
.diff-card:hover,
.value-card:hover,
.principle-card:hover,
.factor-card:hover,
.discount-card:hover,
.price-card:hover {
  transform: translateY(-8px);
  border-color: #F8B84E;
  box-shadow: 0 8px 24px rgba(248, 184, 78, 0.3);
}

.service-card h3,
.problem-card h3,
.benefit-card h3,
.guarantee-card h3,
.contact-card h3,
.diff-card h3,
.value-card h3,
.principle-card h3,
.factor-card h3,
.discount-card h3,
.faq-item h3,
.price-card h3 {
  color: #F8B84E;
  margin-bottom: 16px;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-card p,
.problem-card p,
.benefit-card p,
.guarantee-card p {
  color: #bdc3c7;
  line-height: 1.7;
}

.price {
  color: #F8B84E;
  font-weight: 700;
  font-size: 24px;
  margin-top: 16px;
  font-family: 'Montserrat', sans-serif;
}

.price-big {
  font-size: 36px;
  color: #F8B84E;
  font-weight: 700;
  margin: 20px 0;
  font-family: 'Montserrat', sans-serif;
}

.size,
.time,
.note,
.availability {
  color: #95a5a6;
  font-size: 14px;
  margin-top: 8px;
}

/* ============================================
   TESTIMONIALS - HIGH CONTRAST
   ============================================ */

.testimonial-card {
  background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
  padding: 32px;
  border-left: 4px solid #F8B84E;
  position: relative;
}

.testimonial-card p {
  color: #2c3e50;
  font-style: italic;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.client-name {
  color: #2B5B84;
  font-weight: 700;
  font-size: 14px;
  text-align: right;
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   TEXT-IMAGE SECTIONS - FLEXBOX
   ============================================ */

.text-image-section,
.content-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.text-image-section > * {
  flex: 1 1 45%;
  min-width: 280px;
}

/* ============================================
   SERVICE DETAILS
   ============================================ */

.service-detail {
  background: linear-gradient(135deg, #2B5B84 0%, #1a1a1a 100%);
  padding: 40px;
  margin-bottom: 32px;
  border-radius: 8px;
  border: 2px solid #4A90A4;
  border-left: 6px solid #F8B84E;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.service-detail h3 {
  color: #F8B84E;
  font-size: 28px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.tagline {
  color: #4A90A4;
  font-style: italic;
  font-size: 18px;
  margin-bottom: 20px;
}

.service-detail h4 {
  color: #ecf0f1;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 18px;
  text-transform: uppercase;
}

.service-detail ul {
  list-style: none;
  padding-left: 0;
}

.service-detail li {
  color: #bdc3c7;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

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

/* ============================================
   PRICING TABLES
   ============================================ */

.price-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.price-item {
  background: linear-gradient(135deg, #2B5B84 0%, #1a1a1a 100%);
  padding: 24px;
  border-radius: 8px;
  border: 2px solid #4A90A4;
  border-left: 4px solid #F8B84E;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  transition: all 0.3s ease;
}

.price-item:hover {
  border-color: #F8B84E;
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(248, 184, 78, 0.3);
}

.price-item h3 {
  flex: 1;
  margin-bottom: 0;
  min-width: 200px;
}

.price-item .price {
  margin: 0;
  min-width: 100px;
}

.price-item p {
  flex: 1;
  min-width: 200px;
  margin: 0;
  font-size: 14px;
}

/* ============================================
   CONTACT FORMS
   ============================================ */

.form-wrapper {
  background: linear-gradient(135deg, #2B5B84 0%, #1a1a1a 100%);
  padding: 40px;
  border-radius: 8px;
  border: 2px solid #4A90A4;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  margin: 40px auto;
}

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

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

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px;
  border: 2px solid #4A90A4;
  border-radius: 4px;
  background: rgba(26, 26, 26, 0.5);
  color: #ecf0f1;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #F8B84E;
  background: rgba(26, 26, 26, 0.8);
  box-shadow: 0 0 12px rgba(248, 184, 78, 0.3);
}

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

.form-note {
  background: rgba(248, 184, 78, 0.1);
  border-left: 4px solid #F8B84E;
  padding: 16px;
  color: #bdc3c7;
  font-size: 14px;
  border-radius: 4px;
  margin-top: 20px;
}

/* ============================================
   FOOTER - INDUSTRIAL DARK
   ============================================ */

footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  padding: 60px 20px 20px;
  border-top: 4px solid #F8B84E;
  color: #bdc3c7;
}

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

.footer-section {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-section h3 {
  color: #F8B84E;
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section p {
  color: #95a5a6;
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-nav a {
  color: #95a5a6;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid #34495e;
  color: #7f8c8d;
  font-size: 14px;
}

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

.legal-page {
  padding: 60px 20px;
  background: #1a1a1a;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, #2B5B84 0%, #1a1a1a 100%);
  padding: 40px;
  border-radius: 8px;
  border: 2px solid #4A90A4;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.legal-content h1 {
  color: #F8B84E;
  margin-bottom: 16px;
  font-size: 36px;
}

.legal-content h2 {
  color: #ecf0f1;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 24px;
  border-bottom: 2px solid #4A90A4;
  padding-bottom: 8px;
}

.legal-content ul,
.legal-content ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  color: #bdc3c7;
  margin-bottom: 8px;
  line-height: 1.7;
}

.updated {
  color: #95a5a6;
  font-size: 14px;
  font-style: italic;
  margin-bottom: 24px;
}

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

.thank-you-page {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2B5B84 100%);
  min-height: 60vh;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, #2B5B84 0%, #1a1a1a 100%);
  padding: 60px 40px;
  border-radius: 8px;
  border: 3px solid #F8B84E;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.thank-you-content h1 {
  color: #F8B84E;
  font-size: 42px;
  margin-bottom: 24px;
}

.lead {
  font-size: 20px;
  color: #ecf0f1;
  margin-bottom: 40px;
}

.next-steps,
.alternative-actions {
  margin-top: 40px;
  text-align: left;
}

.next-steps h2,
.alternative-actions h2 {
  color: #F8B84E;
  font-size: 24px;
  margin-bottom: 20px;
  text-align: left;
}

.next-steps ul {
  list-style: none;
  padding-left: 0;
}

.next-steps li {
  color: #bdc3c7;
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  line-height: 1.7;
}

.next-steps li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F8B84E;
  font-weight: 700;
  font-size: 20px;
}

.urgent-note {
  background: rgba(248, 184, 78, 0.1);
  border-left: 4px solid #F8B84E;
  padding: 16px;
  margin-top: 24px;
  border-radius: 4px;
}

.urgent-note a {
  color: #F8B84E;
  font-weight: 700;
  text-decoration: underline;
}

.action-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

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

.cta,
.cta-final {
  background: linear-gradient(135deg, #2B5B84 0%, #1a1a1a 100%);
  padding: 60px 40px;
  text-align: center;
  border-radius: 8px;
  border: 3px solid #F8B84E;
  margin: 60px 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.cta::before,
.cta-final::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(248, 184, 78, 0.02) 20px,
    rgba(248, 184, 78, 0.02) 40px
  );
  pointer-events: none;
}

.cta h2,
.cta-final h2 {
  color: #F8B84E;
  font-size: 36px;
  margin-bottom: 20px;
}

.cta p,
.cta-final p {
  font-size: 18px;
  color: #bdc3c7;
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

.offer {
  background: rgba(248, 184, 78, 0.1);
  border: 2px solid #F8B84E;
  padding: 16px 24px;
  border-radius: 4px;
  font-weight: 700;
  color: #F8B84E;
  margin-bottom: 24px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.guarantee {
  background: rgba(74, 144, 164, 0.1);
  border-left: 4px solid #4A90A4;
  padding: 20px;
  margin-top: 32px;
  border-radius: 4px;
  color: #ecf0f1;
  font-weight: 600;
}

.solution-statement,
.mission {
  background: rgba(248, 184, 78, 0.1);
  border-left: 4px solid #F8B84E;
  padding: 24px;
  margin-top: 40px;
  border-radius: 4px;
  color: #ecf0f1;
  font-size: 18px;
  line-height: 1.8;
  font-style: italic;
}

.contact-detail {
  font-size: 20px;
  font-weight: 700;
  color: #F8B84E;
  margin: 16px 0;
}

.contact-detail a {
  color: #F8B84E;
  text-decoration: underline;
}

.contact-detail a:hover {
  color: #ecf0f1;
}

.office-details {
  background: linear-gradient(135deg, #2B5B84 0%, #1a1a1a 100%);
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #4A90A4;
  margin-top: 32px;
}

.address,
.hours {
  color: #ecf0f1;
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.8;
}

.discount {
  font-size: 32px;
  color: #F8B84E;
  font-weight: 700;
  margin: 16px 0;
  font-family: 'Montserrat', sans-serif;
}

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

@media (max-width: 768px) {
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .subheadline {
    font-size: 18px;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
  }
  
  /* Section spacing */
  .section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  /* Card layouts - single column */
  .problem-card,
  .benefit-card,
  .service-card,
  .guarantee-card,
  .testimonial-card,
  .price-card,
  .contact-card,
  .diff-card,
  .value-card,
  .principle-card,
  .factor-card,
  .discount-card,
  .faq-item {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Text-image sections stack vertically */
  .text-image-section,
  .content-grid {
    flex-direction: column;
  }
  
  .text-image-section > * {
    flex: 1 1 100%;
  }
  
  /* Button adjustments */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    padding: 14px 24px;
  }
  
  /* Trust indicators stack */
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  /* Price items stack */
  .price-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  /* Forms */
  .form-wrapper {
    padding: 24px;
  }
  
  /* Service detail */
  .service-detail {
    padding: 24px;
  }
  
  /* Legal content */
  .legal-content {
    padding: 24px;
  }
  
  /* Thank you page */
  .thank-you-content {
    padding: 40px 24px;
  }
  
  .action-links {
    gap: 12px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .problem-card,
  .benefit-card,
  .service-card,
  .guarantee-card,
  .price-card,
  .diff-card,
  .value-card,
  .principle-card,
  .factor-card,
  .discount-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 28px;
  }
}

@media (min-width: 1025px) {
  /* Desktop - cards in 3 columns where appropriate */
  .services-grid .service-card {
    flex: 1 1 calc(33.333% - 24px);
  }
  
  .trust-indicators {
    justify-content: center;
  }
}

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

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

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

/* Smooth scroll for anchor links */
html {
  scroll-behavior: smooth;
}

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #F8B84E;
  outline-offset: 2px;
}

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

/* High contrast mode support */
@media (prefers-contrast: high) {
  .btn-primary {
    border-width: 3px;
  }
  
  .card-container > * {
    border-width: 3px;
  }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .mobile-menu {
    transition: none;
  }
}