/* ===================================
   LOST SEAL - TECH FUTURISTIC 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', sans-serif;
  line-height: 1.6;
  color: #e0e0e0;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(44, 95, 124, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(232, 149, 111, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(44, 95, 124, 0.5);
}

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

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

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: #b0b0b0;
}

a {
  color: #E8956F;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

a:hover {
  color: #ff6b35;
  text-shadow: 0 0 10px rgba(232, 149, 111, 0.5);
}

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

li {
  margin-bottom: 8px;
  color: #b0b0b0;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

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

/* ===================================
   HEADER & NAVIGATION
   =================================== */

header {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(44, 95, 124, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.logo {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(44, 95, 124, 0.5));
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #e0e0e0;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 12px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2C5F7C, #E8956F);
  transition: width 0.3s ease;
}

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

.main-nav a:hover {
  color: #E8956F;
  background: rgba(44, 95, 124, 0.1);
}

/* ===================================
   MOBILE MENU
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #2C5F7C, #1a4a5f);
  border: 2px solid #E8956F;
  color: #ffffff;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(232, 149, 111, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(232, 149, 111, 0.5);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
  border-left: 2px solid #E8956F;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.7);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 80px 30px 30px;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #E8956F;
  color: #E8956F;
  font-size: 28px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: #E8956F;
  color: #0a0e27;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #e0e0e0;
  padding: 15px 20px;
  border-radius: 8px;
  border-left: 3px solid transparent;
  background: rgba(44, 95, 124, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  border-left-color: #E8956F;
  background: rgba(232, 149, 111, 0.1);
  color: #E8956F;
  transform: translateX(10px);
}

/* ===================================
   BUTTONS & CTAs
   =================================== */

.cta-button,
.cta-primary,
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #E8956F, #ff6b35);
  color: #ffffff !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(232, 149, 111, 0.3);
  position: relative;
  overflow: hidden;
}

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

.cta-button:hover::before,
.cta-primary:hover::before,
.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.cta-button:hover,
.cta-primary:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 149, 111, 0.5);
}

.cta-secondary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: #E8956F;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #E8956F;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-secondary:hover,
.btn-secondary:hover {
  background: rgba(232, 149, 111, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 149, 111, 0.3);
}

.btn-link {
  color: #E8956F;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  border-bottom: 2px solid #E8956F;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.btn-link:hover {
  border-bottom-color: #ff6b35;
  transform: translateX(5px);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 24px;
  justify-content: center;
}

/* ===================================
   HERO SECTIONS
   =================================== */

.hero {
  padding: 80px 20px;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, rgba(44, 95, 124, 0.1) 0%, rgba(232, 149, 111, 0.05) 100%);
  border-radius: 16px;
  margin-bottom: 60px;
  border: 1px solid rgba(44, 95, 124, 0.3);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 50%, rgba(44, 95, 124, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(232, 149, 111, 0.2) 0%, transparent 50%);
  pointer-events: none;
  border-radius: 16px;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff, #E8956F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .subheadline {
  font-size: 20px;
  color: #b0b0b0;
  max-width: 800px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hero-simple {
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 40px;
}

.hero-simple h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.hero-simple .subheadline {
  font-size: 18px;
  color: #b0b0b0;
  max-width: 700px;
  margin: 0 auto;
}

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

/* ===================================
   CARD LAYOUTS (FLEXBOX ONLY)
   =================================== */

.service-grid,
.benefit-grid,
.stat-grid,
.team-grid,
.package-grid,
.testimonial-grid,
.posts-grid,
.resource-grid,
.course-cards,
.quick-links,
.action-grid,
.contact-details,
.rights-grid,
.summary-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  justify-content: space-between;
}

.service-card,
.benefit,
.stat,
.team-member,
.package-card,
.testimonial-card,
.post-card,
.resource-card,
.course-card,
.quick-link-card,
.action-card,
.detail,
.right-card,
.summary-card {
  flex: 1 1 300px;
  min-width: 280px;
  background: rgba(26, 31, 58, 0.6);
  border: 1px solid rgba(44, 95, 124, 0.3);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before,
.benefit::before,
.stat::before,
.team-member::before,
.package-card::before,
.testimonial-card::before,
.post-card::before,
.resource-card::before,
.course-card::before,
.quick-link-card::before,
.action-card::before,
.detail::before,
.right-card::before,
.summary-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #2C5F7C, #E8956F);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover,
.benefit:hover,
.stat:hover,
.team-member:hover,
.package-card:hover,
.testimonial-card:hover,
.post-card:hover,
.resource-card:hover,
.course-card:hover,
.quick-link-card:hover,
.action-card:hover,
.detail:hover,
.right-card:hover,
.summary-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(44, 95, 124, 0.3);
  border-color: #E8956F;
}

.service-card:hover::before,
.benefit:hover::before,
.stat:hover::before,
.team-member:hover::before,
.package-card:hover::before,
.testimonial-card:hover::before,
.post-card:hover::before,
.resource-card:hover::before,
.course-card:hover::before,
.quick-link-card:hover::before,
.action-card:hover::before,
.detail:hover::before,
.right-card:hover::before,
.summary-card:hover::before {
  transform: scaleX(1);
}

.service-card h3,
.benefit h3,
.team-member h3,
.package-card h3,
.post-card h3,
.resource-card h3,
.course-card h3,
.quick-link-card h3,
.action-card h3,
.detail h3,
.right-card h3,
.summary-card h3 {
  color: #E8956F;
  margin-bottom: 12px;
}

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

/* ===================================
   TESTIMONIALS (HIGH CONTRAST)
   =================================== */

.testimonials {
  background: rgba(26, 31, 58, 0.4);
  border-radius: 16px;
  padding: 60px 20px;
  border: 1px solid rgba(44, 95, 124, 0.3);
}

.testimonial-card {
  background: rgba(244, 232, 216, 0.95);
  border: 1px solid #E8956F;
  padding: 32px;
  border-radius: 12px;
}

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

.testimonial-card .author {
  color: #2C5F7C;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.testimonial-card .role {
  color: #666;
  font-size: 14px;
  font-style: normal;
}

.rating,
.rating-stars {
  color: #E8956F;
  font-size: 20px;
  margin-top: 8px;
}

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

.text-image-section,
.mission-vision,
.problem-solution,
.story-section {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.text-image-section > div,
.mission-vision > div,
.problem-solution > div {
  flex: 1 1 300px;
  min-width: 280px;
}

/* ===================================
   STATS & NUMBERS
   =================================== */

.stats {
  background: linear-gradient(135deg, rgba(44, 95, 124, 0.2), rgba(232, 149, 111, 0.1));
  border-radius: 16px;
  padding: 60px 20px;
  border: 1px solid rgba(44, 95, 124, 0.3);
}

.stat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-around;
}

.stat {
  text-align: center;
  flex: 1 1 200px;
  min-width: 200px;
  background: transparent;
  border: none;
  padding: 20px;
}

.stat-number,
.stat-large {
  font-size: 48px;
  font-weight: 700;
  color: #E8956F;
  font-family: 'Montserrat', sans-serif;
  display: block;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(232, 149, 111, 0.5);
}

.stat p {
  color: #e0e0e0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===================================
   PROCESS & TIMELINE
   =================================== */

.process,
.results-timeline {
  padding: 60px 20px;
}

.steps,
.timeline,
.principles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  justify-content: space-between;
}

.step,
.milestone,
.phase,
.principle {
  flex: 1 1 220px;
  min-width: 200px;
  text-align: center;
  background: rgba(26, 31, 58, 0.6);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(44, 95, 124, 0.3);
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2C5F7C, #E8956F);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 auto 16px;
  box-shadow: 0 4px 15px rgba(232, 149, 111, 0.3);
}

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

.contact-form-section,
.newsletter {
  background: rgba(26, 31, 58, 0.6);
  border-radius: 16px;
  padding: 60px 20px;
  border: 1px solid rgba(44, 95, 124, 0.3);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  color: #e0e0e0;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.input-placeholder,
.textarea-placeholder {
  height: 48px;
  background: rgba(10, 14, 39, 0.8);
  border: 1px solid rgba(44, 95, 124, 0.5);
  border-radius: 8px;
}

.textarea-placeholder {
  height: 120px;
}

.radio-placeholder {
  height: 80px;
  background: rgba(10, 14, 39, 0.8);
  border: 1px solid rgba(44, 95, 124, 0.5);
  border-radius: 8px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: 14px;
  background: rgba(10, 14, 39, 0.8);
  border: 1px solid rgba(44, 95, 124, 0.5);
  border-radius: 8px;
  color: #e0e0e0;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #E8956F;
  box-shadow: 0 0 15px rgba(232, 149, 111, 0.3);
}

.newsletter-form,
.email-input {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.email-input {
  flex: 1 1 300px;
  min-width: 250px;
}

.submit-btn,
.download-btn {
  padding: 14px 32px;
  background: linear-gradient(135deg, #E8956F, #ff6b35);
  color: #ffffff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.submit-btn:hover,
.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 149, 111, 0.5);
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
  border-top: 2px solid #E8956F;
  padding: 20px;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.7);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-banner p {
  flex: 1 1 300px;
  margin: 0;
  color: #e0e0e0;
}

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

.cookie-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: linear-gradient(135deg, #E8956F, #ff6b35);
  color: #ffffff;
}

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

.cookie-accept:hover,
.cookie-reject:hover,
.cookie-settings:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(232, 149, 111, 0.3);
}

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

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

.cookie-modal-content {
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
  border: 2px solid #E8956F;
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 24px 0;
}

.category {
  background: rgba(26, 31, 58, 0.6);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(44, 95, 124, 0.3);
}

.category h3 {
  color: #E8956F;
  margin-bottom: 8px;
  font-size: 18px;
}

.category label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e0e0e0;
  font-size: 14px;
}

/* ===================================
   FOOTER
   =================================== */

footer {
  background: rgba(10, 14, 39, 0.95);
  border-top: 2px solid rgba(44, 95, 124, 0.3);
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-brand,
.footer-nav,
.footer-contact {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-brand .logo {
  height: 60px;
  margin-bottom: 16px;
}

.tagline {
  color: #E8956F;
  font-style: italic;
  font-size: 14px;
}

.footer-nav h4,
.footer-contact h4 {
  color: #E8956F;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-nav a,
.footer-contact a {
  display: block;
  color: #b0b0b0;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: #E8956F;
  transform: translateX(5px);
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(44, 95, 124, 0.3);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.legal-links a {
  color: #b0b0b0;
  font-size: 14px;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  color: #E8956F;
}

.copyright {
  color: #666;
  font-size: 14px;
}

/* ===================================
   SPECIAL SECTIONS
   =================================== */

.error-code {
  font-size: 120px;
  font-weight: 700;
  color: #E8956F;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 0 0 30px rgba(232, 149, 111, 0.5);
  margin-bottom: 24px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2C5F7C, #E8956F);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #ffffff;
  margin: 0 auto 24px;
  box-shadow: 0 8px 30px rgba(232, 149, 111, 0.4);
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  background: linear-gradient(135deg, #E8956F, #ff6b35);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.category {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(44, 95, 124, 0.3);
  color: #E8956F;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  margin-right: 8px;
}

.post-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: 14px;
  color: #b0b0b0;
}

.filter-btn {
  padding: 10px 20px;
  background: rgba(26, 31, 58, 0.6);
  color: #e0e0e0;
  border: 1px solid rgba(44, 95, 124, 0.3);
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: rgba(232, 149, 111, 0.2);
  color: #E8956F;
  border-color: #E8956F;
}

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

.cookie-table th,
.cookie-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid rgba(44, 95, 124, 0.3);
}

.cookie-table th {
  background: rgba(44, 95, 124, 0.2);
  color: #E8956F;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
}

.cookie-table td {
  color: #b0b0b0;
}

blockquote {
  padding: 24px;
  margin: 24px 0;
  background: rgba(232, 149, 111, 0.1);
  border-left: 4px solid #E8956F;
  border-radius: 8px;
  font-style: italic;
  color: #e0e0e0;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
  /* Hide desktop nav, show mobile menu */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero .subheadline {
    font-size: 16px;
  }
  
  /* Stack layouts vertically */
  .text-image-section,
  .mission-vision,
  .problem-solution {
    flex-direction: column;
  }
  
  /* Full width cards on mobile */
  .service-card,
  .benefit,
  .stat,
  .team-member,
  .package-card,
  .testimonial-card,
  .post-card,
  .resource-card,
  .course-card,
  .quick-link-card,
  .action-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Adjust spacing */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  .hero,
  .hero-simple {
    padding: 40px 16px;
  }
  
  /* Button adjustments */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-button,
  .cta-primary,
  .cta-secondary,
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* Footer adjustments */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Stats grid */
  .stat-grid {
    flex-direction: column;
  }
  
  /* Error code */
  .error-code {
    font-size: 80px;
  }
  
  /* Cookie banner */
  .cookie-banner .container {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .service-card,
  .benefit,
  .team-member,
  .testimonial-card,
  .post-card {
    flex: 1 1 calc(50% - 12px);
    min-width: calc(50% - 12px);
  }
}

/* ===================================
   ACCESSIBILITY & UTILITY CLASSES
   =================================== */

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 32px;
  font-size: 18px;
  color: #b0b0b0;
}

.last-updated,
.note,
.methodology {
  font-size: 14px;
  color: #888;
  font-style: italic;
  margin-top: 16px;
}

.guarantee,
.bonus,
.subscriber-count {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: #b0b0b0;
}

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

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

/* Loading animation for buttons */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.loading {
  animation: pulse 1.5s ease-in-out infinite;
  pointer-events: none;
}

/* Hover glow effect for interactive elements */
@keyframes glow {
  0%, 100% { box-shadow: 0 0 10px rgba(232, 149, 111, 0.3); }
  50% { box-shadow: 0 0 20px rgba(232, 149, 111, 0.6); }
}

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