/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-weight: 400;
  background: #F4F4F0;
  color: #242423;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Typography */
h1, h2, h3 {
  font-weight: 800;
  letter-spacing: -0.5px;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: #242423;
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #6B7280;
  font-weight: 500;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #FFB3EC 0%, #FF90E8 100%);
  padding: 4rem 0;
  border-bottom: 4px solid #000000;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-icon {
  margin-bottom: 1rem;
}

.hero-logo {
  width: 64px;
  height: 64px;
  filter: drop-shadow(4px 4px 0px #000000);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #000000;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.1;
}

.hero-benefits {
  margin-bottom: 2rem;
}

.hero-benefit {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  line-height: 1.4;
  position: relative;
  padding-left: 1.5rem;
}

.hero-benefit:last-child {
  margin-bottom: 0;
}

.hero-benefit::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 800;
  color: #23A094;
  font-size: 1.1rem;
}

.benefit-text {
  line-height: 1.4;
}

.hero-cta {
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hero-buttons .btn-hero {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.final-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}

/* Override ALL base btn-hero styles for hero buttons */
.hero-buttons .btn-hero {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1.2rem 2.5rem !important;
  font-size: 1.3rem !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  border: 3px solid #000000 !important;
  border-radius: 0 !important;
  box-shadow: 4px 4px 0px #000000 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  transition: all 0.2s ease !important;
  position: relative !important;
  overflow: hidden !important;
  line-height: 1.2 !important;
  box-sizing: border-box !important;
  height: 70px !important;
  min-height: 70px !important;
  max-height: 70px !important;
}

/* Chrome Button - Secondary Style */
.btn-hero.btn-chrome {
  background: #FFFFFF !important;
  color: #4285F4 !important;
}

.btn-hero.btn-chrome:hover {
  background: #F8F9FA !important;
  color: #4285F4 !important;
  transform: translate(-2px, -2px) !important;
  box-shadow: 6px 6px 0px #000000 !important;
}

.btn-hero.btn-chrome:active {
  transform: translate(2px, 2px) !important;
  box-shadow: 2px 2px 0px #000000 !important;
}

/* Premium Button - Primary Style */
.btn-hero.btn-premium {
  background: #23A094 !important;
  color: #FFFFFF !important;
}

.btn-hero.btn-premium:hover {
  background: #1E8B7A !important;
  color: #FFFFFF !important;
  transform: translate(-2px, -2px) !important;
  box-shadow: 6px 6px 0px #000000 !important;
}

.btn-hero.btn-premium:active {
  transform: translate(2px, 2px) !important;
  box-shadow: 2px 2px 0px #000000 !important;
}

/* Apply same styling to final CTA buttons */
.final-cta-buttons .btn-hero {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1.2rem 2.5rem !important;
  font-size: 1.3rem !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  border: 3px solid #000000 !important;
  border-radius: 0 !important;
  box-shadow: 4px 4px 0px #000000 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  transition: all 0.2s ease !important;
  position: relative !important;
  overflow: hidden !important;
  line-height: 1.2 !important;
  box-sizing: border-box !important;
  height: 70px !important;
  min-height: 70px !important;
  max-height: 70px !important;
}

/* Apply same styling to pricing table buttons */
.tier-cta .btn-hero {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1.2rem 2.5rem !important;
  font-size: 1.3rem !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  border: 3px solid #000000 !important;
  border-radius: 0 !important;
  box-shadow: 4px 4px 0px #000000 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  transition: all 0.2s ease !important;
  position: relative !important;
  overflow: hidden !important;
  line-height: 1.2 !important;
  box-sizing: border-box !important;
  height: 70px !important;
  min-height: 70px !important;
  max-height: 70px !important;
  width: 100% !important;
}

.btn-hero {
  display: inline-block;
  background: #23A094;
  color: #FFFFFF;
  padding: 1.2rem 2.5rem;
  font-size: 1.3rem;
  font-weight: 800;
  text-decoration: none;
  border: 4px solid #000000;
  border-radius: 8px;
  box-shadow: 6px 6px 0px #000000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.btn-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-hero:hover::before {
  left: 100%;
}

.btn-hero:hover {
  background: #1E8B7A;
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0px #000000;
}

.btn-hero:active {
  transform: translate(2px, 2px);
  box-shadow: 4px 4px 0px #000000;
}

.hero-subtext {
  margin-top: 1rem;
  font-size: 1rem;
  color: #000000;
  font-weight: 600;
  opacity: 0.8;
}

/* Demo Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.demo-placeholder {
  background: #FFFFFF;
  border: 4px solid #000000;
  border-radius: 8px;
  box-shadow: 6px 6px 0px #000000;
  padding: 0;
  width: 100%;
  max-width: 500px;
  overflow: hidden;
}

.demo-header {
  background: #FFB3EC;
  color: #000000;
  text-align: center;
  border-bottom: 3px solid #000000;
  padding: 1rem;
}

.demo-icon {
  margin-bottom: 0.5rem;
}

.demo-logo {
  width: 24px;
  height: 24px;
  filter: drop-shadow(2px 2px 0px #000000);
}

.demo-title {
  font-size: 1rem;
  font-weight: 800;
  color: #000000;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.demo-subtitle {
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.85;
}

.demo-tabs {
  display: flex;
  background: #F4F4F0;
  border-bottom: 3px solid #000000;
}

.demo-tab {
  flex: 1;
  padding: 0.5rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  border-right: 3px solid #000000;
  cursor: pointer;
}

.demo-tab:last-child {
  border-right: none;
}

.demo-tab.active {
  background: #FFFFFF;
  color: #242423;
}

.demo-toolbar {
  padding: 0.75rem;
  background: #F4F4F0;
  border-bottom: 3px solid #000000;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.demo-search {
  flex: 1;
}

.demo-search input {
  width: 100%;
  padding: 0.4rem 0.6rem;
  border: 2px solid #000000;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  background: #FFFFFF;
}

.demo-filters {
  display: flex;
  gap: 0.5rem;
}

.demo-select {
  padding: 0.4rem 0.6rem;
  border: 2px solid #000000;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  background: #FFFFFF;
  box-shadow: 2px 2px 0px #000000;
}

.demo-sort-btn {
  padding: 0.4rem 0.6rem;
  border: 2px solid #000000;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  background: #FFFFFF;
  box-shadow: 2px 2px 0px #000000;
  cursor: pointer;
}

.demo-groups-grid {
  padding: 0.75rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  background: #FFFFFF;
  max-height: 200px;
  overflow-y: auto;
}

.demo-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background: #F4F4F0;
  border: 3px solid #000000;
  border-radius: 4px;
  box-shadow: 3px 3px 0px #000000;
  cursor: pointer;
  transition: all 0.1s ease;
}

.demo-group:hover {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0px #000000;
}

.demo-checkbox {
  width: 12px;
  height: 12px;
  border: 2px solid #000000;
  border-radius: 4px;
  background: #FFFFFF;
  box-shadow: 1px 1px 0px #000000;
  flex-shrink: 0;
}

.demo-checkbox.checked {
  background: #FF90E8;
  box-shadow: 2px 2px 0px #000000;
}

.demo-name {
  flex: 1;
  font-weight: 700;
  font-size: 0.7rem;
  color: #242423;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-status {
  font-size: 0.6rem;
  font-weight: 800;
  padding: 0.1rem 0.3rem;
  border: 2px solid #000000;
  border-radius: 3px;
  box-shadow: 2px 2px 0px #000000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.demo-status.active {
  background: #23A094;
  color: #FFFFFF;
}

.demo-status.admin {
  background: #DC2626;
  color: #FFFFFF;
}

.demo-status.left {
  background: #16A34A;
  color: #FFFFFF;
}

.demo-actions {
  padding: 0.75rem;
  background: #F4F4F0;
  border-bottom: 3px solid #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.demo-selection-info {
  font-size: 0.8rem;
  font-weight: 600;
  color: #242423;
}

.demo-button-primary {
  background: #FF90E8;
  color: #000000;
  padding: 0.5rem 1rem;
  font-weight: 800;
  border: 3px solid #000000;
  border-radius: 4px;
  box-shadow: 4px 4px 0px #000000;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.demo-upgrade-notice {
  padding: 0.75rem;
  background: linear-gradient(135deg, #FFF7ED 0%, #FFFBEB 100%);
  border-left: 4px solid #FF90E8;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.demo-upgrade-icon {
  font-size: 1.2rem;
  filter: drop-shadow(2px 2px 0px #000000);
}

.demo-upgrade-text {
  font-size: 0.8rem;
  font-weight: 500;
  color: #242423;
}

.demo-upgrade-text strong {
  font-weight: 800;
  color: #23A094;
}

/* How it Works Video Section */
.how-it-works-video {
  padding: 5rem 0;
  background: #FFFFFF;
  border-bottom: 4px solid #000000;
}

.video-container {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background: #000000;
  border: 4px solid #000000;
  border-radius: 8px;
  box-shadow: 6px 6px 0px #000000;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-description {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.video-highlights {
  background: #F4F4F0;
  border: 4px solid #000000;
  border-radius: 8px;
  box-shadow: 4px 4px 0px #000000;
  padding: 2rem;
}

.video-highlight {
  display: block;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: #242423;
  line-height: 1.4;
  position: relative;
  padding-left: 1.5rem;
}

.video-highlight:last-child {
  margin-bottom: 0;
}

.video-highlight::before {
  content: "▶";
  position: absolute;
  left: 0;
  font-weight: 800;
  color: #23A094;
  font-size: 1rem;
}

/* Problem Section */
.problem {
  padding: 5rem 0;
  background: #FFFFFF;
  border-bottom: 4px solid #000000;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.problem-card {
  background: #F4F4F0;
  border: 4px solid #000000;
  border-radius: 8px;
  box-shadow: 6px 6px 0px #000000;
  padding: 2rem;
  text-align: center;
  transition: all 0.2s ease;
}

.problem-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0px #000000;
}

.problem-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: drop-shadow(3px 3px 0px #000000);
}

.problem-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #242423;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.problem-card p {
  font-size: 1.1rem;
  color: #6B7280;
  font-weight: 500;
  line-height: 1.6;
}

/* Transformation Section */
.transformation {
  padding: 5rem 0;
  background: #F4F4F0;
  border-bottom: 4px solid #000000;
}

.how-it-works {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 6rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-top: 3rem;
}

.step-number {
  background: #FF90E8;
  color: #000000;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 4px solid #000000;
  box-shadow: 4px 4px 0px #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #242423;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.step-content p {
  font-size: 1rem;
  color: #6B7280;
  font-weight: 500;
  line-height: 1.6;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: #FFFFFF;
  border: 4px solid #000000;
  border-radius: 8px;
  box-shadow: 6px 6px 0px #000000;
  padding: 2rem;
  text-align: center;
  transition: all 0.2s ease;
}

.benefit-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0px #000000;
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: drop-shadow(3px 3px 0px #000000);
}

.benefit-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #242423;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.benefit-card p {
  font-size: 1.1rem;
  color: #6B7280;
  font-weight: 500;
  line-height: 1.6;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background: #FFFFFF;
  border-bottom: 4px solid #000000;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-group {
  background: #F4F4F0;
  border: 4px solid #000000;
  border-radius: 8px;
  box-shadow: 6px 6px 0px #000000;
  padding: 2rem;
  transition: all 0.2s ease;
}

.feature-group:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0px #000000;
}

.feature-group-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #242423;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  border-bottom: 3px solid #000000;
  padding-bottom: 0.5rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  background: #FFFFFF;
  border: 3px solid #000000;
  border-radius: 4px;
  box-shadow: 3px 3px 0px #000000;
  padding: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
  transition: all 0.1s ease;
}

.feature-item:hover {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0px #000000;
}

.feature-item strong {
  color: #23A094;
  font-weight: 800;
}

/* About Section */
.about {
  padding: 5rem 0;
  background: #F4F4F0;
  border-bottom: 4px solid #000000;
}

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

.about-text p {
  font-size: 1.2rem;
  color: #242423;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-weight: 500;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* Pricing Section */
.pricing {
  padding: 5rem 0;
  background: #FFFFFF;
  border-bottom: 4px solid #000000;
}

.pricing-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-tier {
  background: #F4F4F0;
  border: 4px solid #000000;
  border-radius: 12px;
  box-shadow: 6px 6px 0px #000000;
  overflow: hidden;
  transition: all 0.2s ease;
}

.pricing-tier:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0px #000000;
}

.premium-tier {
  border-color: #23A094;
  position: relative;
}



.tier-header {
  padding: 2rem;
  text-align: center;
  border-bottom: 4px solid #000000;
}

.free-tier .tier-header {
  background: #E5E7EB;
  color: #000000;
}

.premium-tier .tier-header {
  background: #23A094;
  color: #FFFFFF;
}

.tier-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.tier-price {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  filter: drop-shadow(3px 3px 0px #000000);
}

.tier-subtitle {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.9;
}

.tier-features {
  padding: 2rem;
  background: #FFFFFF;
}

.tier-feature {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #242423;
  border-bottom: 2px solid #F4F4F0;
  line-height: 1.4;
}

.tier-feature:last-child {
  border-bottom: none;
}

.tier-feature.premium {
  color: #23A094;
  font-weight: 700;
}

.tier-feature.limitation {
  color: #dc2626;
  background: #fef2f2;
  padding: 0.75rem 1rem;
  margin: 0.25rem 0;
  border-radius: 6px;
  border: 1px solid #fecaca;
  border-bottom: 1px solid #fecaca;
}

.tier-feature.included {
  color: #059669;
}

.tier-feature.highlight {
  background: linear-gradient(135deg, #FF90E8 0%, #FFB3EC 100%);
  color: #000000;
  padding: 0.75rem 1rem;
  margin: 0.25rem 0;
  border-radius: 6px;
  border: 1px solid #FF90E8;
  border-bottom: 1px solid #FF90E8;
  font-weight: 700;
  position: relative;
}

/* Features Section Structure */
.features-section {
  margin-bottom: 1.5rem;
}

.features-section:last-child {
  margin-bottom: 0;
}

.features-header {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #000000;
}

.tier-cta {
  padding: 2rem;
  text-align: center;
  background: #F4F4F0;
  border-top: 4px solid #000000;
}

.btn-free {
  display: inline-block;
  background: #E5E7EB;
  color: #6B7280;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 800;
  border: 4px solid #000000;
  border-radius: 8px;
  box-shadow: 4px 4px 0px #000000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: not-allowed;
}

.btn-premium {
  display: inline-block;
  background: #23A094;
  color: #FFFFFF;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
  border: 4px solid #000000;
  border-radius: 8px;
  box-shadow: 6px 6px 0px #000000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  margin-bottom: 1rem;
}

.btn-premium:hover {
  background: #1E8B7A;
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0px #000000;
}

.btn-premium:active {
  transform: translate(2px, 2px);
  box-shadow: 4px 4px 0px #000000;
}

.tier-note {
  font-size: 0.9rem;
  color: #6B7280;
  font-weight: 500;
  margin-top: 0.5rem;
}
  border: 3px solid #000000;
  border-radius: 4px;
  box-shadow: 3px 3px 0px #000000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tier-header {
  padding: 2rem;
  text-align: center;
  border-bottom: 4px solid #000000;
}

.free-tier .tier-header {
  background: #E5E7EB;
  color: #000000;
}

.premium-tier .tier-header {
  background: #23A094;
  color: #FFFFFF;
}

.tier-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.tier-price {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  filter: drop-shadow(3px 3px 0px #000000);
}

.tier-subtitle {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.9;
}

.tier-features {
  padding: 2rem;
  background: #FFFFFF;
}

.tier-feature {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #242423;
  border-bottom: 2px solid #F4F4F0;
  line-height: 1.4;
}

.tier-feature:last-child {
  border-bottom: none;
}

.tier-feature.premium {
  color: #23A094;
  font-weight: 700;
}

.tier-cta {
  padding: 2rem;
  text-align: center;
  background: #F4F4F0;
  border-top: 4px solid #000000;
}

.btn-free {
  display: inline-block;
  background: #E5E7EB;
  color: #6B7280;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 800;
  border: 4px solid #000000;
  border-radius: 8px;
  box-shadow: 4px 4px 0px #000000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: not-allowed;
}

.btn-premium {
  display: inline-block;
  background: #23A094;
  color: #FFFFFF;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
  border: 4px solid #000000;
  border-radius: 8px;
  box-shadow: 6px 6px 0px #000000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  margin-bottom: 1rem;
}

.btn-premium:hover {
  background: #1E8B7A;
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0px #000000;
}

.btn-premium:active {
  transform: translate(2px, 2px);
  box-shadow: 4px 4px 0px #000000;
}

.tier-note {
  font-size: 0.9rem;
  color: #6B7280;
  font-weight: 500;
  margin-top: 0.5rem;
}

/* FAQ Section */
.faq {
  padding: 5rem 0;
  background: #F4F4F0;
  border-bottom: 4px solid #000000;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: #FFFFFF;
  border: 4px solid #000000;
  border-radius: 8px;
  box-shadow: 6px 6px 0px #000000;
  padding: 2rem;
  transition: all 0.2s ease;
}

.faq-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0px #000000;
}

.faq-question {
  font-size: 1.3rem;
  font-weight: 800;
  color: #242423;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.faq-answer {
  font-size: 1.1rem;
  color: #6B7280;
  font-weight: 500;
  line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #23A094 0%, #1E8B7A 100%);
  color: #FFFFFF;
  text-align: center;
  border-bottom: 4px solid #000000;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-transform: uppercase;
  filter: drop-shadow(3px 3px 0px #000000);
}

.cta-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  font-weight: 500;
  opacity: 0.9;
}

.cta-subtext {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.8;
}

/* Footer */
.footer {
  background: #242423;
  color: #FFFFFF;
  padding: 2rem 0;
  text-align: center;
}

.footer p {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.footer nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer nav a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.footer nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Responsive Design */

/* Tablet Landscape */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .container {
    padding: 0 20px;
  }
}

/* Tablet Portrait */
@media (max-width: 768px) {
  .hero {
    padding: 3rem 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-benefits {
    text-align: left;
  }

  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  /* Video section responsive */
  .video-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .video-highlights {
    padding: 1.5rem;
  }

  .hero-benefit {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    padding-left: 1.3rem;
  }

  .hero-benefit::before {
    font-size: 1rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }

  .problem-grid,
  .benefits-grid,
  .features-grid,
  .faq-grid,
  .pricing-comparison {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .how-it-works {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .step {
    flex-direction: column;
    text-align: center;
    margin-top: 2rem;
  }

  .step-number {
    margin-bottom: 1rem;
  }

  .demo-placeholder {
    max-width: 100%;
    margin: 0 auto;
  }

  .demo-groups-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .demo-toolbar {
    flex-direction: column;
    gap: 0.75rem;
  }

  .demo-search {
    width: 100%;
  }

  .demo-filters {
    justify-content: center;
  }

  .container {
    padding: 0 20px;
  }

  .hero-buttons,
  .final-cta-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .btn-hero {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .footer nav {
    gap: 1.5rem;
  }
}

/* Mobile Landscape */
@media (max-width: 640px) {
  .hero {
    padding: 2.5rem 0;
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.1;
  }

  .hero-benefit {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
    padding-left: 1.2rem;
  }

  .hero-benefit::before {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .demo-groups-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .demo-group {
    padding: 0.75rem;
  }

  .demo-name {
    font-size: 0.9rem;
  }

  .container {
    padding: 0 16px;
  }

  .problem-card,
  .benefit-card,
  .faq-item {
    padding: 1.5rem;
  }

  .tier-header {
    padding: 1.5rem;
  }

  .tier-features {
    padding: 1.5rem;
  }

  .tier-cta {
    padding: 1.5rem;
  }
}

/* Mobile Portrait */
@media (max-width: 480px) {
  .hero {
    padding: 2rem 0;
  }

  .hero-title {
    font-size: 1.8rem;
    line-height: 1.1;
    margin-bottom: 0.8rem;
    letter-spacing: -0.3px;
  }

  .hero-benefit {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    padding-left: 1.1rem;
  }

  .hero-benefit::before {
    font-size: 0.85rem;
  }

  /* Video section mobile responsive */
  .video-highlights {
    padding: 1rem;
  }

  .video-highlight {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }

  /* Improve text readability on mobile */
  body {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  /* Better spacing for mobile sections */
  .problem,
  .transformation,
  .about,
  .pricing,
  .faq {
    padding: 3rem 0;
  }

  .final-cta {
    padding: 3rem 0;
  }

  .hero-logo {
    width: 48px;
    height: 48px;
  }

  .demo-logo {
    width: 20px;
    height: 20px;
  }

  .btn-hero,
  .btn-premium {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 700;
  }

  .section-title {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
  }

  .tier-price {
    font-size: 2.8rem;
  }

  .tier-title {
    font-size: 1.5rem;
  }

  .problem-card,
  .benefit-card,
  .faq-item {
    padding: 1.2rem;
  }

  .tier-header {
    padding: 1.2rem;
  }

  .tier-features {
    padding: 1.2rem;
  }

  .tier-cta {
    padding: 1.2rem;
  }

  .tier-feature {
    font-size: 0.9rem;
    padding: 0.6rem 0;
  }

  .problem-icon,
  .benefit-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

  .step-number {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.2rem;
  }

  .step-content h3 {
    font-size: 1.1rem;
  }

  .step-content p {
    font-size: 0.9rem;
  }

  .faq-question {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }

  .demo-toolbar {
    padding: 0.75rem;
  }

  .demo-search input {
    font-size: 0.9rem;
    padding: 0.5rem;
  }

  .demo-select {
    font-size: 0.8rem;
    padding: 0.4rem;
  }

  .demo-sort-btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
  }

  .demo-actions {
    padding: 0.75rem;
  }

  .demo-selection-info {
    font-size: 0.8rem;
  }

  .demo-button-primary {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }

  .demo-upgrade-notice {
    padding: 0.75rem;
  }

  .demo-upgrade-text {
    font-size: 0.8rem;
  }

  .footer nav {
    flex-direction: column;
    gap: 1rem;
  }

  .footer nav a {
    font-size: 0.85rem;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .btn-hero,
  .btn-premium {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }

  .problem-card,
  .benefit-card,
  .faq-item {
    padding: 1rem;
  }

  .tier-header,
  .tier-features,
  .tier-cta {
    padding: 1rem;
  }
}

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

.demo-checkbox.checked {
  animation: pulse 2s infinite;
}

/* Touch and Accessibility */
.btn-hero:focus,
.btn-premium:focus {
  outline: 4px solid #FF90E8;
  outline-offset: 2px;
}

/* Touch-friendly interactions for mobile */
@media (hover: none) and (pointer: coarse) {
  .btn-hero,
  .btn-premium {
    min-height: 44px; /* iOS recommended touch target */
    touch-action: manipulation;
  }

  .btn-hero:active,
  .btn-premium:active {
    transform: translate(1px, 1px);
    transition: transform 0.1s ease;
  }

  .problem-card:hover,
  .benefit-card:hover,
  .faq-item:hover {
    transform: none; /* Disable hover effects on touch devices */
  }

  .demo-placeholder {
    touch-action: pan-y; /* Allow vertical scrolling */
  }
}

/* Print Styles */
@media print {
  .hero,
  .final-cta {
    background: #FFFFFF !important;
    color: #000000 !important;
  }

  .btn-hero,
  .btn-pricing {
    border: 2px solid #000000 !important;
    box-shadow: none !important;
  }
}

/* Blog Styles */
:root {
  --bg-primary: #F4F4F0;
  --bg-secondary: #FFFFFF;
  --text-primary: #242423;
  --text-secondary: #6B7280;
  --accent-color: #FF90E8;
  --border-color: #000000;
}

.blog-nav {
  background: var(--bg-primary);
  border-bottom: 3px solid var(--border-color);
  padding: 1rem 0;
}

.blog-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-home {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 600;
}

.nav-logo {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--accent-color);
}

.blog-header {
  background: var(--bg-secondary);
  padding: 3rem 0;
  text-align: center;
  border-bottom: 3px solid var(--border-color);
}

.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.breadcrumb a {
  color: var(--accent-color);
  text-decoration: none;
}

.blog-intro {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 1rem auto 0;
}

.article-header {
  background: var(--bg-secondary);
  padding: 3rem 0;
  border-bottom: 3px solid var(--border-color);
}

.article-meta {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.article-intro {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-top: 1.5rem;
  line-height: 1.6;
}

.article-content {
  padding: 3rem 0;
}

.blog-post {
  max-width: 800px;
  margin: 0 auto;
}

.content-section {
  margin-bottom: 3rem;
}

.content-section h2 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 0.5rem;
}

.content-section h3 {
  color: var(--text-primary);
  margin: 2rem 0 1rem;
}

.content-section p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

.content-section ul, .content-section ol {
  margin: 1rem 0;
  padding-left: 2rem;
}

.content-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.warning-box, .tip-box, .solution-box, .example-box, .contact-box, .cta-box, .recommendation-box {
  background: var(--bg-secondary);
  border: 3px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.warning-box {
  border-color: #ff6b6b;
  background: #fff5f5;
}

.tip-box {
  border-color: #4ecdc4;
  background: #f0fffe;
}

.solution-box {
  border-color: #45b7d1;
  background: #f0f9ff;
}

.example-box {
  border-color: var(--accent-color);
  background: #fef7ff;
}

.cta-box {
  border-color: var(--accent-color);
  background: var(--bg-secondary);
  text-align: center;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 1.5rem 0;
}

.btn-primary, .btn-secondary {
  padding: 0.75rem 1.5rem;
  border: 3px solid var(--border-color);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--accent-color);
  color: white;
}

.btn-secondary {
  background: var(--bg-primary);
  color: var(--text-primary);
}

.btn-primary:hover, .btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 var(--border-color);
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.comparison-table th, .comparison-table td {
  border: 2px solid var(--border-color);
  padding: 1rem;
  text-align: left;
}

.comparison-table th {
  background: var(--bg-secondary);
  font-weight: 600;
}

.faq-section {
  margin-top: 2rem;
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.faq-item h4 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.related-articles {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 3px solid var(--border-color);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.related-card {
  background: var(--bg-secondary);
  border: 3px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  text-decoration: none;
  color: var(--text-primary);
  transition: transform 0.2s;
}

.related-card:hover {
  transform: translateY(-2px);
}

.related-card h4 {
  margin-bottom: 0.5rem;
  color: var(--accent-color);
}

.blog-footer {
  background: var(--bg-primary);
  border-top: 3px solid var(--border-color);
  padding: 2rem 0;
  margin-top: 4rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.footer-logo {
  width: 32px;
  height: 32px;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Blog Index Specific Styles */
.featured-article {
  background: var(--bg-secondary);
  padding: 3rem 0;
  border-bottom: 3px solid var(--border-color);
}

.featured-card {
  background: var(--bg-primary);
  border: 3px solid var(--accent-color);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
}

.featured-badge {
  background: var(--accent-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  position: absolute;
  top: -10px;
  left: 2rem;
}

.featured-card h3 {
  margin: 1rem 0;
}

.featured-card h3 a {
  color: var(--text-primary);
  text-decoration: none;
}

.featured-excerpt {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 1rem 0;
}

.featured-meta {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.btn-read-more {
  background: var(--accent-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border: 3px solid var(--border-color);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: transform 0.2s;
}

.btn-read-more:hover {
  transform: translateY(-2px);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.article-card {
  background: var(--bg-secondary);
  border: 3px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  transition: transform 0.2s;
}

.article-card:hover {
  transform: translateY(-2px);
}

.article-card h3 a {
  color: var(--text-primary);
  text-decoration: none;
}

.article-excerpt {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 1rem 0;
}

.article-tags {
  display: flex;
  gap: 0.5rem;
  margin: 1rem 0;
}

.tag {
  background: var(--accent-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
}

.article-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.blog-topics {
  background: var(--bg-secondary);
  padding: 3rem 0;
  border-top: 3px solid var(--border-color);
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.topic-card {
  background: var(--bg-primary);
  border: 3px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.topic-card h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.topic-card ul {
  list-style: none;
  padding: 0;
}

.topic-card li {
  margin-bottom: 0.5rem;
}

.topic-card a {
  color: var(--accent-color);
  text-decoration: none;
}

.blog-cta {
  background: var(--bg-primary);
  padding: 3rem 0;
  text-align: center;
  border-top: 3px solid var(--border-color);
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-features {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }

  .topics-grid {
    grid-template-columns: 1fr;
  }
}

/* Blog Preview Section on Main Page */
.blog-preview {
  padding: 5rem 0;
  background: #F4F4F0;
  border-bottom: 4px solid #000000;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.blog-card {
  background: #FFFFFF;
  border: 4px solid #000000;
  border-radius: 8px;
  box-shadow: 6px 6px 0px #000000;
  padding: 2rem;
  transition: all 0.2s ease;
  position: relative;
}

.blog-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0px #000000;
}

.blog-card.featured {
  border-color: #FF90E8;
  background: linear-gradient(135deg, #FFFBF7 0%, #FFF7FF 100%);
}

.blog-badge {
  background: #FF90E8;
  color: #000000;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: absolute;
  top: -10px;
  left: 2rem;
  border: 2px solid #000000;
  box-shadow: 3px 3px 0px #000000;
}

.blog-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #242423;
  margin: 1rem 0;
  text-transform: uppercase;
  line-height: 1.3;
}

.blog-card h3 a {
  color: #242423;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card h3 a:hover {
  color: #FF90E8;
}

.blog-excerpt {
  font-size: 1rem;
  color: #6B7280;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
}

.read-time {
  color: #23A094;
}

.blog-category {
  background: #23A094;
  color: #FFFFFF;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-cta-section {
  text-align: center;
}

.btn-blog-more {
  display: inline-block;
  background: #23A094;
  color: #FFFFFF;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
  border: 4px solid #000000;
  border-radius: 8px;
  box-shadow: 6px 6px 0px #000000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.btn-blog-more:hover {
  background: #1E8B7A;
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0px #000000;
}

.btn-blog-more:active {
  transform: translate(2px, 2px);
  box-shadow: 4px 4px 0px #000000;
}

/* Responsive adjustments for blog preview */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .blog-card {
    padding: 1.5rem;
  }

  .blog-card h3 {
    font-size: 1.1rem;
  }

  .blog-excerpt {
    font-size: 0.95rem;
  }

  .blog-meta {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .blog-preview {
    padding: 3rem 0;
  }

  .blog-card {
    padding: 1.2rem;
  }

  .blog-badge {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }
}
