/* ===================================
   SWIFT RECORD - INDUSTRIAL MODERN CSS
   Design Style: Industrial Modern
   ================================= */

/* CSS RESET & NORMALIZE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #2c2c2c;
  background: #1a1a1a;
  overflow-x: hidden;
}

/* TYPOGRAPHY - Industrial Modern */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #d4d4d4;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

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

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

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

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

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

a:hover {
  color: #d4af6a;
}

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

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

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

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

/* HEADER - Industrial Steel */
header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  border-bottom: 2px solid #404040;
}

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

.logo a {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(1.2) contrast(1.1);
}

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

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

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

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

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

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

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

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
  z-index: 1002;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.7);
  border-left: 2px solid #404040;
}

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

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

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

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

.mobile-nav a {
  color: #d4d4d4;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 20px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav a:hover {
  color: #ffffff;
  background: rgba(168, 137, 92, 0.1);
  border-left-color: #a8895c;
  transform: translateX(5px);
}

/* HERO SECTION - Industrial Strength */
.hero {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 50%, #2d2d2d 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #404040;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(168, 137, 92, 0.03) 10px,
    rgba(168, 137, 92, 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;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 32px;
  color: #d4d4d4;
  line-height: 1.8;
}

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

/* BUTTONS - Industrial Style */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #a8895c 0%, #8b7045 100%);
  color: #1a1a1a;
  border-color: #a8895c;
  box-shadow: 0 4px 12px rgba(168, 137, 92, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d4af6a 0%, #a8895c 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168, 137, 92, 0.5);
  color: #000000;
}

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

.btn-secondary:hover {
  background: #a8895c;
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(168, 137, 92, 0.4);
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  padding: 80px 20px 60px;
  text-align: center;
  border-bottom: 3px solid #404040;
}

.page-hero h1 {
  color: #ffffff;
  font-size: 48px;
  margin-bottom: 16px;
}

.page-hero .hero-subtitle {
  font-size: 18px;
  color: #b8b8b8;
  max-width: 700px;
  margin: 0 auto;
}

/* SECTIONS - Industrial Layout */
.section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

.value-proposition,
.services-overview,
.services-intro,
.blog-intro,
.contact-info {
  background: #242424;
  padding: 60px 20px;
  margin-bottom: 0;
  border-top: 2px solid #404040;
  border-bottom: 2px solid #404040;
}

.value-proposition h2,
.services-overview h2,
.services-intro h2,
.blog-intro h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #ffffff;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  color: #b8b8b8;
  font-size: 18px;
}

/* GRID LAYOUTS - Flexbox Only */
.benefits-grid,
.services-grid,
.testimonial-grid,
.values-grid,
.team-grid,
.stats-grid,
.category-grid,
.styles-grid,
.articles-grid,
.categories-grid,
.info-grid,
.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

/* CARDS - Industrial Design */
.benefit-card,
.service-card,
.testimonial-card,
.value-card,
.member-card,
.stat-card,
.category-card,
.style-card,
.article-card,
.info-card,
.link-card,
.tip-card,
.project-card,
.faq-item {
  background: #2d2d2d;
  padding: 28px;
  border-radius: 4px;
  border: 2px solid #404040;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.benefit-card,
.value-card,
.info-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
}

.service-card,
.category-card,
.style-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
}

.article-card,
.link-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 320px;
  background: #ffffff;
  color: #2c2c2c;
  border-color: #d4d4d4;
}

.member-card,
.stat-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
}

.benefit-card:hover,
.service-card:hover,
.value-card:hover,
.member-card:hover,
.category-card:hover,
.style-card:hover,
.article-card:hover,
.link-card:hover,
.info-card:hover {
  transform: translateY(-4px);
  border-color: #a8895c;
  box-shadow: 0 8px 24px rgba(168, 137, 92, 0.2);
}

.benefit-card h3,
.service-card h3,
.value-card h3,
.member-card h3,
.category-card h3,
.style-card h3,
.article-card h3,
.link-card h3,
.info-card h3,
.tip-card h3,
.project-card h3 {
  color: #a8895c;
  margin-bottom: 12px;
  font-size: 20px;
}

.benefit-card p,
.service-card p,
.value-card p,
.member-card p,
.category-card p,
.style-card p,
.info-card p,
.tip-card p,
.project-card p {
  color: #b8b8b8;
}

/* TESTIMONIALS - Readable Text */
.testimonials {
  background: #1a1a1a;
  padding: 60px 20px;
  border-top: 2px solid #404040;
  border-bottom: 2px solid #404040;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #ffffff;
}

.testimonial-card {
  background: #f8f8f8;
  border: 2px solid #d4d4d4;
  padding: 32px;
}

.quote {
  font-size: 18px;
  font-style: italic;
  color: #2c2c2c;
  margin-bottom: 20px;
  line-height: 1.8;
}

.author {
  color: #555555;
  font-size: 14px;
}

.author strong {
  color: #2d5016;
  font-weight: 600;
}

/* SERVICE DETAILS */
.service-full {
  background: #2d2d2d;
  padding: 32px;
  margin-bottom: 24px;
  border-radius: 4px;
  border-left: 4px solid #a8895c;
  border-right: 2px solid #404040;
  border-top: 2px solid #404040;
  border-bottom: 2px solid #404040;
}

.service-full h3 {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 16px;
}

.service-full .price {
  display: block;
  font-size: 28px;
  color: #a8895c;
  font-weight: 700;
  margin: 16px 0;
}

.service-full ul {
  list-style: none;
  margin: 16px 0 0 0;
}

.service-full ul li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
  color: #b8b8b8;
}

.service-full ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #a8895c;
  font-weight: bold;
}

/* PRICE DISPLAY */
.price {
  display: block;
  font-size: 24px;
  color: #a8895c;
  font-weight: 700;
  margin-top: 12px;
}

/* STATS */
.stats {
  background: #242424;
  padding: 60px 20px;
  border-top: 2px solid #404040;
  border-bottom: 2px solid #404040;
}

.stats h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #ffffff;
}

.stat-card {
  text-align: center;
  background: #1a1a1a;
  border: 2px solid #a8895c;
}

.stat-number {
  display: block;
  font-size: 56px;
  font-weight: 700;
  color: #a8895c;
  margin-bottom: 8px;
  font-family: 'Merriweather', serif;
}

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

/* STORY & CONTENT */
.story,
.values,
.team,
.case-studies,
.design-styles,
.tips,
.services-detailed,
.faq,
.faq-contact,
.service-area,
.legal-content {
  padding: 60px 20px;
  background: #1a1a1a;
}

.story h2,
.values h2,
.team h2,
.case-studies h2,
.design-styles h2,
.tips h2,
.services-detailed h2,
.faq h2,
.faq-contact h2,
.service-area h2 {
  color: #ffffff;
  margin-bottom: 32px;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.content-wrapper p {
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.8;
  color: #b8b8b8;
}

.mission {
  background: #2d2d2d;
  padding: 24px;
  border-left: 4px solid #a8895c;
  margin: 24px 0;
  border-radius: 4px;
}

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

/* FAQ */
.faq-item {
  margin-bottom: 24px;
  background: #2d2d2d;
  padding: 28px;
  border-left: 4px solid #a8895c;
  flex: 1 1 100%;
}

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

.faq-item p {
  color: #b8b8b8;
}

/* METADATA */
.meta,
.project-meta {
  font-size: 14px;
  color: #888888;
  margin-top: 12px;
}

.excerpt {
  color: #b8b8b8;
  margin-bottom: 12px;
}

.count {
  display: block;
  color: #a8895c;
  font-weight: 600;
  margin-top: 8px;
}

/* CTA BANNER - Industrial Power */
.cta-banner {
  background: linear-gradient(135deg, #a8895c 0%, #8b7045 100%);
  padding: 80px 20px;
  text-align: center;
  margin: 60px 0;
  border-top: 3px solid #d4af6a;
  border-bottom: 3px solid #6d5935;
}

.cta-banner h2 {
  color: #1a1a1a;
  margin-bottom: 20px;
  font-size: 36px;
}

.cta-banner p {
  color: #2c2c2c;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn {
  margin: 0 10px;
}

.cta-banner .btn-primary {
  background: #1a1a1a;
  color: #ffffff;
  border-color: #1a1a1a;
}

.cta-banner .btn-primary:hover {
  background: #2d2d2d;
  border-color: #2d2d2d;
  transform: translateY(-2px);
}

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

.cta-banner .btn-secondary:hover {
  background: #1a1a1a;
  color: #ffffff;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

/* CONTACT FORM SECTION */
.contact-form-section {
  padding: 60px 20px;
  background: #242424;
  border-top: 2px solid #404040;
  border-bottom: 2px solid #404040;
}

.contact-form-section h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 20px;
}

.contact-form-section > .container > p {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 32px;
  color: #b8b8b8;
}

.form-note {
  background: #2d2d2d;
  padding: 24px;
  border-radius: 4px;
  border: 2px solid #a8895c;
  margin-top: 32px;
}

.form-note p {
  margin-bottom: 12px;
  color: #d4d4d4;
}

.form-note ul {
  margin: 12px 0 0 20px;
}

.form-note li {
  color: #b8b8b8;
}

.form-note a {
  color: #a8895c;
  font-weight: 600;
}

/* AREA LIST */
.area-list {
  list-style: none;
  max-width: 600px;
  margin: 24px auto 0;
}

.area-list li {
  padding: 12px 20px;
  background: #2d2d2d;
  margin-bottom: 8px;
  border-left: 4px solid #a8895c;
  color: #d4d4d4;
  transition: all 0.3s ease;
}

.area-list li:hover {
  background: #363636;
  transform: translateX(4px);
}

/* THANK YOU PAGE */
.thank-you-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  text-align: center;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
  background: #242424;
  padding: 60px 40px;
  border-radius: 8px;
  border: 2px solid #a8895c;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #a8895c;
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
  font-weight: bold;
}

.thank-you-content h1 {
  color: #ffffff;
  margin-bottom: 20px;
}

.lead {
  font-size: 18px;
  color: #b8b8b8;
  margin-bottom: 32px;
}

.next-steps {
  text-align: left;
  margin: 32px 0;
  padding: 24px;
  background: #2d2d2d;
  border-radius: 4px;
  border-left: 4px solid #a8895c;
}

.next-steps h2 {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 16px;
}

.next-steps ol {
  margin-left: 24px;
}

.next-steps li {
  color: #b8b8b8;
  margin-bottom: 12px;
}

.alternative-contact {
  margin-top: 32px;
  padding: 20px;
  background: #2d2d2d;
  border-radius: 4px;
  border: 2px solid #404040;
}

.alternative-contact h3 {
  color: #a8895c;
  margin-bottom: 12px;
}

.helpful-links {
  padding: 60px 20px;
  background: #1a1a1a;
}

.helpful-links h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 40px;
}

.social-follow {
  padding: 60px 20px;
  background: #242424;
  text-align: center;
  border-top: 2px solid #404040;
}

.social-follow h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.social-follow p {
  color: #b8b8b8;
  max-width: 600px;
  margin: 0 auto;
}

/* FOOTER - Industrial Base */
footer {
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  padding: 60px 20px 20px;
  border-top: 3px solid #404040;
}

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

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

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

.footer-section p {
  color: #888888;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-section a {
  color: #b8b8b8;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #a8895c;
}

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #404040;
}

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

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.7);
  z-index: 1000;
  border-top: 2px solid #a8895c;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  color: #d4d4d4;
  font-size: 14px;
}

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

.cookie-buttons .btn {
  padding: 12px 24px;
  font-size: 14px;
}

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

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

.cookie-modal-content {
  background: #2d2d2d;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border-radius: 8px;
  border: 2px solid #a8895c;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal h2 {
  color: #ffffff;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background: #1a1a1a;
  margin-bottom: 16px;
  border-radius: 4px;
  border: 1px solid #404040;
}

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

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

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-toggle label {
  color: #d4d4d4;
  font-size: 14px;
}

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

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* UPDATE INFO */
.update-info {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid #404040;
  color: #888888;
  font-size: 14px;
  font-style: italic;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero {
    padding: 60px 20px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .benefit-card,
  .service-card,
  .value-card,
  .member-card,
  .stat-card,
  .category-card,
  .style-card,
  .article-card,
  .info-card,
  .link-card,
  .testimonial-card {
    flex: 1 1 100%;
  }

  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  .footer-section {
    flex: 1 1 100%;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons .btn {
    width: 100%;
  }

  .cookie-modal-content {
    padding: 24px;
  }

  .thank-you-content {
    padding: 40px 24px;
  }

  .cta-banner h2 {
    font-size: 28px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .stat-number {
    font-size: 42px;
  }

  .benefit-card,
  .service-card,
  .testimonial-card,
  .value-card,
  .member-card,
  .stat-card,
  .service-full,
  .faq-item {
    padding: 20px;
  }

  .container {
    padding: 0 16px;
  }
}

/* SMOOTH ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.benefit-card,
.service-card,
.testimonial-card,
.value-card,
.article-card {
  animation: fadeIn 0.6s ease forwards;
}

/* ACCESSIBILITY */
:focus-visible {
  outline: 2px solid #a8895c;
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid #a8895c;
  outline-offset: 4px;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-banner {
    display: none;
  }

  body {
    background: white;
    color: black;
  }
}

/* END OF STYLES */