/* ===================================
   TECHPULS - MODERN BOLD DESIGN SYSTEM
   Bold modern design with strong typography and colors
   =================================== */

/* CSS RESET & BASE */
* {
  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', sans-serif;
  line-height: 1.6;
  color: #1E293B;
  background: #FFFFFF;
  overflow-x: hidden;
}

/* BOLD TYPOGRAPHY SYSTEM */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #1E293B;
  margin-bottom: 16px;
}

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

h2 {
  font-size: 32px;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

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

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

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

/* CONTAINER SYSTEM */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* BOLD BUTTON STYLES */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.btn-primary {
  background: #2563EB;
  color: #FFFFFF;
  box-shadow: 4px 4px 0 #1E293B;
}

.btn-primary:hover {
  background: #1E40AF;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #1E293B;
}

.btn-secondary {
  background: #1E293B;
  color: #FFFFFF;
  box-shadow: 4px 4px 0 #2563EB;
}

.btn-secondary:hover {
  background: #334155;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #2563EB;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #2563EB;
  color: #FFFFFF;
  border: 3px solid #1E293B;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
  font-weight: bold;
}

.mobile-menu-toggle:hover {
  background: #1E40AF;
  transform: rotate(90deg);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: #1E293B;
  z-index: 1002;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #F59E0B;
  color: #1E293B;
  border: none;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  padding: 15px 20px;
  background: rgba(37, 99, 235, 0.1);
  border-left: 4px solid #2563EB;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-nav a:hover {
  background: rgba(37, 99, 235, 0.2);
  border-left-color: #F59E0B;
  transform: translateX(10px);
}

/* HEADER - BOLD DESIGN */
header {
  background: #FFFFFF;
  border-bottom: 4px solid #2563EB;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 0 #1E293B;
}

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

header img {
  height: 50px;
  width: auto;
}

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

.main-nav a {
  color: #1E293B;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #2563EB;
  border-bottom-color: #F59E0B;
}

/* HERO SECTION - BOLD & GEOMETRIC */
.hero {
  background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: #F59E0B;
  opacity: 0.1;
  transform: rotate(45deg);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: #1E293B;
  opacity: 0.1;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

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

.hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 0 rgba(30, 41, 59, 0.5);
}

.hero .subheadline {
  color: #FFFFFF;
  font-size: 20px;
  margin-bottom: 32px;
  font-weight: 600;
}

.cta-group {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.trust-badges {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.trust-badges span {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  background: rgba(30, 41, 59, 0.3);
  border: 2px solid #F59E0B;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* SECTION SPACING */
.section,
section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
}

.page-hero h1 {
  color: #FFFFFF;
  text-shadow: 3px 3px 0 rgba(37, 99, 235, 0.5);
}

.page-hero .subheadline {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
}

.breadcrumb {
  color: #F59E0B;
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

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

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

/* CARD GRID SYSTEM - FLEXBOX ONLY */
.review-grid,
.feature-grid,
.category-grid,
.service-cards,
.testimonial-grid,
.comparison-cards,
.guide-grid,
.tip-grid,
.contact-cards,
.stat-grid,
.link-grid,
.card-container,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

/* BOLD CARD DESIGN */
.review-card,
.feature-card,
.category-card,
.service-card,
.testimonial-card,
.comparison-card,
.guide-card,
.tip-card,
.contact-card,
.stat-card,
.link-card,
.card,
.principle-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  border: 4px solid #1E293B;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  box-shadow: 6px 6px 0 #2563EB;
}

.review-card:hover,
.feature-card:hover,
.category-card:hover,
.service-card:hover,
.comparison-card:hover,
.guide-card:hover,
.tip-card:hover,
.contact-card:hover,
.link-card:hover,
.card:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 #2563EB;
}

.review-card h3,
.feature-card h3,
.category-card h3,
.service-card h3,
.comparison-card h3,
.guide-card h3,
.tip-card h3,
.contact-card h3,
.link-card h3 {
  color: #1E293B;
  margin-bottom: 16px;
  font-weight: 800;
}

/* RATING DISPLAY */
.rating {
  display: inline-block;
  background: #F59E0B;
  color: #1E293B;
  padding: 8px 16px;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 16px;
  border: 2px solid #1E293B;
}

.category {
  display: inline-block;
  background: #2563EB;
  color: #FFFFFF;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

/* PRICE DISPLAY */
.price {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: #2563EB;
  margin: 16px 0;
  text-shadow: 2px 2px 0 rgba(30, 41, 59, 0.1);
}

/* TESTIMONIAL CARDS */
.testimonial-card {
  background: #F8FAFC;
  border-color: #2563EB;
  box-shadow: 6px 6px 0 #F59E0B;
}

.testimonial-card p {
  color: #1E293B;
  font-size: 16px;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-card .author {
  display: block;
  color: #475569;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
}

/* FEATURES SECTION */
.features .feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.features .feature-card img {
  width: 60px;
  height: 60px;
  padding: 12px;
  background: #2563EB;
  border: 3px solid #1E293B;
}

/* CTA SECTIONS - BOLD DESIGN */
.cta-banner,
.cta-section,
.cta-contact {
  background: #F59E0B;
  padding: 60px 20px;
  text-align: center;
  margin: 60px 0;
  border-top: 6px solid #1E293B;
  border-bottom: 6px solid #1E293B;
  position: relative;
}

.cta-banner::before,
.cta-section::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 3px dashed #1E293B;
  pointer-events: none;
}

.cta-banner h2,
.cta-section h2,
.cta-contact h2 {
  color: #1E293B;
  font-size: 40px;
  margin-bottom: 16px;
  text-shadow: 3px 3px 0 rgba(255, 255, 255, 0.5);
}

.cta-banner p,
.cta-section p {
  color: #1E293B;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 32px;
}

.contact-info {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.contact-info span {
  color: #1E293B;
  font-weight: 700;
  font-size: 16px;
}

/* CONTENT LAYOUT WITH SIDEBAR */
.content-layout {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.filter-sidebar {
  flex: 0 0 250px;
  min-width: 250px;
}

.main-content {
  flex: 1 1 calc(100% - 290px);
  min-width: 0;
}

.filter-sidebar h3 {
  background: #1E293B;
  color: #FFFFFF;
  padding: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.filter-group {
  margin-bottom: 30px;
  padding: 20px;
  background: #F8FAFC;
  border: 3px solid #2563EB;
}

.filter-group h4 {
  color: #1E293B;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: color 0.3s ease;
}

.filter-group label:hover {
  color: #2563EB;
}

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

/* TABS - BOLD STYLE */
.category-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab {
  padding: 12px 24px;
  background: #F8FAFC;
  border: 3px solid #1E293B;
  color: #1E293B;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tab:hover,
.tab.active {
  background: #2563EB;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 3px 3px 0 #1E293B;
}

/* WINNER BADGE */
.winner-badge {
  display: inline-block;
  background: #F59E0B;
  color: #1E293B;
  padding: 8px 16px;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  border: 2px solid #1E293B;
}

/* KEY DIFFERENCES LIST */
.key-differences {
  list-style: none;
  margin: 20px 0;
}

.key-differences li {
  padding: 10px 10px 10px 30px;
  margin-bottom: 8px;
  background: #F8FAFC;
  border-left: 4px solid #2563EB;
  position: relative;
  font-weight: 600;
  color: #475569;
}

.key-differences li::before {
  content: '▸';
  position: absolute;
  left: 10px;
  color: #2563EB;
  font-weight: bold;
}

/* PROS/CONS */
.pros-cons {
  margin: 16px 0;
  padding: 16px;
  background: #F8FAFC;
  border: 2px solid #1E293B;
  font-size: 14px;
  line-height: 1.8;
}

.pros-cons strong {
  color: #1E293B;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
}

/* INCLUDED FEATURES LIST */
.included-features,
.benefits-list {
  list-style: none;
  margin: 20px 0;
}

.included-features li,
.benefits-list li {
  padding: 10px 10px 10px 35px;
  margin-bottom: 10px;
  position: relative;
  font-weight: 600;
  color: #475569;
  border-bottom: 2px solid #E2E8F0;
}

.included-features li::before,
.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 10px;
  color: #2563EB;
  font-weight: bold;
  font-size: 18px;
}

.duration,
.reading-time {
  display: block;
  color: #64748B;
  font-size: 14px;
  font-weight: 700;
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* TIMELINE - GEOMETRIC DESIGN */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 40px 0;
}

.timeline-step,
.milestone,
.step {
  padding: 30px;
  background: #FFFFFF;
  border: 4px solid #1E293B;
  border-left: 8px solid #2563EB;
  position: relative;
  box-shadow: 6px 6px 0 #F59E0B;
}

.timeline-step h3,
.milestone h4,
.step h3 {
  color: #2563EB;
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 800;
}

/* ACCORDION */
.accordion {
  margin: 40px 0;
}

.accordion-item {
  margin-bottom: 20px;
  border: 3px solid #1E293B;
  background: #FFFFFF;
}

.accordion-item h3 {
  background: #2563EB;
  color: #FFFFFF;
  padding: 20px;
  cursor: pointer;
  margin: 0;
  font-size: 18px;
  transition: background 0.3s ease;
  position: relative;
}

.accordion-item h3:hover {
  background: #1E40AF;
}

.accordion-item h3::after {
  content: '▼';
  position: absolute;
  right: 20px;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.accordion-item.active h3::after {
  transform: rotate(180deg);
}

.accordion-item p {
  padding: 20px;
  display: none;
  color: #475569;
  font-weight: 600;
}

.accordion-item.active p {
  display: block;
}

/* PAGINATION */
.pagination {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 40px 0;
  flex-wrap: wrap;
}

.pagination a {
  padding: 12px 20px;
  background: #FFFFFF;
  border: 3px solid #1E293B;
  color: #1E293B;
  font-weight: 700;
  transition: all 0.3s ease;
}

.pagination a:hover {
  background: #2563EB;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 3px 3px 0 #1E293B;
}

/* FORM STYLES - BOLD DESIGN */
.form-wrapper {
  max-width: 600px;
  margin: 40px auto;
  padding: 40px;
  background: #FFFFFF;
  border: 4px solid #1E293B;
  box-shadow: 8px 8px 0 #2563EB;
}

.form-note {
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 20px;
  padding: 15px;
  background: #F8FAFC;
  border-left: 4px solid #2563EB;
}

.service-selector {
  margin: 30px 0;
  padding: 30px;
  background: #F8FAFC;
  border: 3px solid #2563EB;
}

.service-selector label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-weight: 700;
  color: #1E293B;
  cursor: pointer;
  padding: 12px;
  background: #FFFFFF;
  border: 2px solid #E2E8F0;
  transition: all 0.3s ease;
}

.service-selector label:hover {
  border-color: #2563EB;
  transform: translateX(5px);
}

.service-selector input[type="checkbox"] {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

/* TOOL INTERFACE */
.tool-interface {
  margin: 40px 0;
  padding: 40px;
  background: #F8FAFC;
  border: 4px solid #1E293B;
}

.product-selector {
  margin-bottom: 24px;
}

.product-selector label {
  display: block;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-selector select {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  border: 3px solid #1E293B;
  background: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-selector select:focus {
  outline: none;
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.info-text {
  font-size: 14px;
  color: #64748B;
  font-weight: 600;
  text-align: center;
  margin-top: 20px;
  font-style: italic;
}

/* VALUES & PRINCIPLES */
.values-list,
.text-section {
  margin: 40px 0;
}

.values-list h3 {
  background: #1E293B;
  color: #FFFFFF;
  padding: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.values-list ul,
.text-section ul {
  list-style: none;
}

.values-list li,
.text-section ul li {
  padding: 16px 16px 16px 50px;
  margin-bottom: 12px;
  background: #F8FAFC;
  border-left: 6px solid #2563EB;
  position: relative;
  font-weight: 600;
  color: #475569;
}

.values-list li::before,
.text-section ul li::before {
  content: '▸';
  position: absolute;
  left: 20px;
  color: #F59E0B;
  font-size: 20px;
  font-weight: bold;
}

/* TEXT & IMAGE SECTION */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.text-image-section > * {
  flex: 1 1 400px;
}

/* SERVICE HIGHLIGHT */
.service-highlight {
  max-width: 500px;
  margin: 40px auto;
  padding: 40px;
  background: #FFFFFF;
  border: 4px solid #1E293B;
  text-align: center;
  box-shadow: 8px 8px 0 #2563EB;
}

.service-highlight h3 {
  color: #1E293B;
  font-size: 24px;
  margin-bottom: 20px;
}

.service-highlight .price {
  font-size: 48px;
  color: #2563EB;
}

/* LEGAL CONTENT */
.legal-content {
  padding: 40px 20px;
}

.legal-content .text-section {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  color: #2563EB;
  border-bottom: 4px solid #1E293B;
  padding-bottom: 12px;
  margin-top: 40px;
  margin-bottom: 24px;
}

.legal-content h3 {
  color: #1E293B;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  border: 3px solid #1E293B;
}

.legal-content th {
  background: #2563EB;
  color: #FFFFFF;
  padding: 16px;
  text-align: left;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid #1E293B;
}

.legal-content td {
  padding: 16px;
  border: 2px solid #E2E8F0;
  font-weight: 600;
  color: #475569;
}

.legal-content tr:nth-child(even) {
  background: #F8FAFC;
}

.last-updated {
  color: #F59E0B;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
}

.quick-links {
  margin-top: 40px;
  padding: 30px;
  background: #F8FAFC;
  border: 3px solid #2563EB;
}

.quick-links h3 {
  color: #1E293B;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.quick-links a {
  display: block;
  padding: 12px;
  margin-bottom: 10px;
  background: #FFFFFF;
  border-left: 4px solid #2563EB;
  color: #1E293B;
  font-weight: 700;
  transition: all 0.3s ease;
}

.quick-links a:hover {
  border-left-color: #F59E0B;
  transform: translateX(10px);
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
  padding: 80px 20px;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: #F59E0B;
  border: 6px solid #1E293B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: bold;
  color: #1E293B;
  margin: 0 auto 30px;
  box-shadow: 6px 6px 0 rgba(30, 41, 59, 0.5);
}

.thank-you-hero h1 {
  color: #FFFFFF;
  text-shadow: 3px 3px 0 rgba(30, 41, 59, 0.5);
}

.thank-you-hero .subheadline,
.confirmation-text {
  color: #FFFFFF;
  font-weight: 600;
}

.confirmation-text {
  font-size: 14px;
  margin: 20px 0 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px 0;
}

.timeline {
  text-align: center;
  font-weight: 700;
  color: #2563EB;
  font-size: 18px;
  margin-top: 30px;
  text-transform: uppercase;
}

/* CONTACT METHODS */
.contact-methods {
  margin: 60px 0;
}

.contact-card img {
  width: 60px;
  height: 60px;
  padding: 12px;
  background: #2563EB;
  border: 3px solid #1E293B;
  margin-bottom: 20px;
}

.contact-card p {
  font-weight: 700;
  color: #1E293B;
  font-size: 18px;
}

.hours,
.response-time {
  font-size: 14px;
  color: #64748B;
  font-weight: 600;
  margin-top: 12px;
}

.email-display {
  font-size: 20px;
  color: #2563EB;
  font-weight: 800;
  margin-top: 20px;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 30px 0;
  align-items: center;
}

.contact-options span {
  font-weight: 700;
  color: #1E293B;
  font-size: 16px;
}

/* FOOTER - BOLD DESIGN */
footer {
  background: #1E293B;
  color: #FFFFFF;
  padding: 60px 20px 20px;
  border-top: 6px solid #2563EB;
}

.footer-top {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 3px solid #334155;
}

.footer-top img {
  height: 50px;
  margin: 0 auto 16px;
}

.tagline {
  color: #F59E0B;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-column {
  flex: 1 1 200px;
}

.footer-column h4 {
  color: #F59E0B;
  font-size: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
}

.footer-column a {
  display: block;
  color: #94A3B8;
  margin-bottom: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  padding-left: 12px;
  border-left: 3px solid transparent;
}

.footer-column a:hover {
  color: #FFFFFF;
  border-left-color: #2563EB;
  transform: translateX(5px);
}

.footer-contact {
  text-align: center;
  padding: 30px 0;
  border-top: 3px solid #334155;
  border-bottom: 3px solid #334155;
  margin-bottom: 30px;
}

.footer-contact p {
  color: #94A3B8;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
}

.footer-bottom p {
  color: #64748B;
  font-size: 14px;
  font-weight: 600;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1E293B;
  border-top: 4px solid #2563EB;
  padding: 24px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -6px 0 #F59E0B;
}

.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 400px;
}

.cookie-text p {
  color: #FFFFFF;
  font-weight: 600;
  margin: 0;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid #1E293B;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: #2563EB;
  color: #FFFFFF;
}

.cookie-accept:hover {
  background: #1E40AF;
  transform: translateY(-2px);
}

.cookie-reject {
  background: #64748B;
  color: #FFFFFF;
}

.cookie-reject:hover {
  background: #475569;
}

.cookie-settings {
  background: #F59E0B;
  color: #1E293B;
}

.cookie-settings:hover {
  background: #D97706;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 41, 59, 0.95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: #FFFFFF;
  border: 6px solid #1E293B;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: 8px 8px 0 #2563EB;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #F59E0B;
  color: #1E293B;
  border: none;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.cookie-modal h3 {
  color: #1E293B;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 4px solid #2563EB;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #F8FAFC;
  border-left: 4px solid #2563EB;
}

.cookie-category h4 {
  color: #1E293B;
  font-size: 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  color: #475569;
  font-size: 14px;
  font-weight: 600;
}

.cookie-toggle {
  width: 50px;
  height: 26px;
  background: #CBD5E1;
  border: 2px solid #1E293B;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #2563EB;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: #FFFFFF;
  top: 2px;
  left: 2px;
  transition: transform 0.3s ease;
  border: 2px solid #1E293B;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

/* LINK STYLES */
.link {
  color: #2563EB;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
}

.link:hover {
  color: #F59E0B;
  transform: translateX(5px);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  header .btn-primary {
    display: none;
  }
  
  /* Typography scaling */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  /* Card layouts */
  .review-card,
  .feature-card,
  .category-card,
  .service-card,
  .testimonial-card,
  .comparison-card,
  .guide-card,
  .tip-card,
  .contact-card,
  .stat-card,
  .link-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* CTA buttons */
  .cta-group {
    flex-direction: column;
  }
  
  .cta-group .btn-primary,
  .cta-group .btn-secondary {
    width: 100%;
  }
  
  /* Content layout */
  .content-layout {
    flex-direction: column;
  }
  
  .filter-sidebar {
    flex: 1 1 100%;
    width: 100%;
  }
  
  .main-content {
    flex: 1 1 100%;
  }
  
  /* Text-image sections */
  .text-image-section {
    flex-direction: column;
  }
  
  /* Footer */
  .footer-columns {
    flex-direction: column;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Hero section */
  .hero {
    padding: 60px 20px;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 12px;
  }
  
  .trust-badges span {
    text-align: center;
  }
  
  /* Sections */
  section {
    padding: 40px 20px;
  }
  
  /* Contact info */
  .contact-info {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  /* Further typography scaling */
  h1 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  /* Buttons */
  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  /* Cards */
  .review-card,
  .feature-card,
  .service-card {
    padding: 20px;
  }
  
  /* Price display */
  .price {
    font-size: 28px;
  }
  
  /* Cookie modal */
  .cookie-modal-content {
    padding: 24px;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer,
  .cta-banner,
  .cta-section {
    display: none !important;
  }
  
  body {
    color: #000;
    background: #fff;
  }
  
  .container {
    max-width: 100%;
  }
}