* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Canadian Palette */
  --jigglypuff: #ff6b9d;
  --young-pink: #feca57;
  --red-orange: #ee5a55;
  --jade-dust: #00d2d3;
  --jade: #01a3a4;
  --dark-jade: #2e86ab;
  --imperial-primer: #341f97;
  --clear-chill: #0abde3;
  --saturated-sky: #5f27cd;
  --bright-greek: #3c40c6;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #2c3e50;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Fun background pattern */
.bg-pattern {
  position: fixed;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  z-index: -1;
  background-image:
    radial-gradient(circle at 20% 30%, var(--jade-dust) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, var(--jigglypuff) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, var(--young-pink) 0%, transparent 50%);
}

/* Navigation */
nav {
  padding: 20px 40px;
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 26px;
  font-weight: 800;
  color: var(--imperial-primer);
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

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

.nav-link {
  color: var(--imperial-primer);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--jade-dust);
}

/* Logo SVG - Simple rectangle frame */
.logo-icon {
  width: 40px;
  height: 40px;
  position: relative;
  animation: pulse 2s ease-in-out infinite;
  /* Prevent layout shift */
  min-width: 40px;
  min-height: 40px;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

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

.nav-cta {
  background: var(--jigglypuff);
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(255, 107, 157, 0.3);
}

/* Hero */
.hero {
  padding: 140px 40px 100px;
  text-align: center;
  position: relative;
}

.hero-badge {
  display: inline-block;
  background: var(--young-pink);
  color: var(--imperial-primer);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 30px;
  animation: slideDown 0.6s ease;
  position: relative;
  z-index: 10;
}

@keyframes slideDown {
from {
  opacity: 0;
  transform: translateY(-20px);
}
to {
  opacity: 1;
  transform: translateY(0);
}
}

.hero h1 {
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 30px;
  animation: slideUp 0.8s ease;
}

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

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--jade-dust), var(--clear-chill), var(--jigglypuff));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 22px;
  color: #64748b;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: slideUp 0.8s ease 0.1s both;
}

.hero-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--jade-dust), var(--clear-chill));
  color: white;
  padding: 18px 40px;
  border-radius: 35px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  animation: slideUp 0.8s ease 0.2s both;
  position: relative;
  z-index: 10;
}

.hero-cta::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, var(--jade-dust), var(--clear-chill), var(--jigglypuff));
  border-radius: 35px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-cta:hover::before {
  opacity: 1;
}

.hero-cta:hover {
  transform: translateY(-2px);
}

/* Floating elements */
.floating-element {
  position: absolute;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
  /* Optimize for performance */
  will-change: transform;
  transform: translateZ(0); /* Hardware acceleration */
}

.float-1 {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--jigglypuff), var(--young-pink));
  border-radius: 20px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.float-2 {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--jade-dust), var(--clear-chill));
  border-radius: 50%;
  top: 70%;
  right: 15%;
  animation-delay: 2s;
}

.float-3 {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--imperial-primer), var(--saturated-sky));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  bottom: 10%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
0%, 100% {
  transform: translateY(0) rotate(0deg);
}
50% {
  transform: translateY(-30px) rotate(10deg);
}
}

/* Camera Demo Section */
.camera-demo {
  padding: 80px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
  overflow: hidden;
}

.camera-demo-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* iPhone Mockup - Landscape */
.phone-mockup {
  width: 844px;
  height: 390px;
  background: #101010;
  border-radius: 45px;
  padding: 8px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 20px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  transform: scale(0.85);
}

/* Side buttons for landscape */
.phone-mockup::before {
  content: '';
  position: absolute;
  top: -3px;
  right: 120px;
  width: 60px;
  height: 3px;
  background: #2a2a2a;
  border-radius: 2px 2px 0 0;
}

.phone-mockup::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 80px;
  width: 80px;
  height: 3px;
  background: #2a2a2a;
  border-radius: 0 0 2px 2px;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 37px;
  overflow: hidden;
  position: relative;
}

/* Camera Interface */
.camera-interface {
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  flex-direction: column;
}

/* Status Bar - Landscape */
.status-bar {
  height: 35px;
  padding: 8px 50px 0 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 14px;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.status-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dynamic-island {
  width: 110px;
  height: 30px;
  background: #000;
  border-radius: 15px;
  position: absolute;
  right: 50px;
  top: 5px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.status-right {
  display: flex;
  gap: 5px;
  align-items: center;
  margin-right: 130px;
}

.status-right svg {
  opacity: 1;
  height: 11px;
}

/* Camera Header */
.camera-header {
  padding: 0 25px 8px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.camera-close {
  background: none;
  border: none;
  color: #0A84FF;
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  cursor: pointer;
  padding: 4px;
}

.camera-header h3 {
  font-size: 16px;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Main Content Area */
.camera-content {
  flex: 1;
  display: flex;
  padding: 0 50px 15px;
  gap: 25px;
  align-items: center;
}

/* Viewfinder - Left Side */
.viewfinder {
  flex: 1;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Check Background */
.check-background {
  width: 95%;
  max-width: 460px;
  aspect-ratio: 2.4/1;
  position: relative;
  animation: checkMovement 6s ease-in-out infinite;
}

@keyframes checkMovement {
0%, 100% { transform: scale(0.75) rotate(-3deg) translate(-20px, 8px); }
25% { transform: scale(0.82) rotate(-2deg) translate(-12px, 3px); }
50% { transform: scale(0.90) rotate(-1deg) translate(5px, -3px); }
75% { transform: scale(0.97) rotate(0deg) translate(0, 0); }
85%, 95% { transform: scale(1) rotate(0deg) translate(0, 0); }
}

.check-image {
  width: 100%;
  height: 100%;
  background: #f0f4f7;
  border-radius: 6px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
  padding: 18px 22px;
  position: relative;
  opacity: 0.85;
  animation: checkOpacity 6s ease-in-out infinite;
}

@keyframes checkOpacity {
0%, 70% { opacity: 0.65; }
75%, 100% { opacity: 0.95; }
}

.check-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: 'Courier New', monospace;
  color: #333;
  font-size: 11px;
}

.check-header {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
}

.check-payto,
.check-amount {
  border-bottom: 1px solid #999;
  padding: 3px 0;
  font-size: 10px;
  margin: 6px 0;
}

.check-bank {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.bank-logo {
  width: 35px;
  height: 35px;
  background: #666;
  border-radius: 3px;
}

.bank-info {
  font-size: 9px;
}

.routing {
  font-family: 'MICR', 'Courier New', monospace;
  letter-spacing: 1.5px;
  margin-top: 3px;
}

/* Guide Overlay */
.guide-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guide-frame {
  width: 95%;
  max-width: 460px;
  aspect-ratio: 2.4/1;
  position: relative;
  animation: frameColor 6s ease-in-out infinite;
}

@keyframes frameColor {
0%, 20% { filter: hue-rotate(0deg); }
25%, 45% { filter: hue-rotate(30deg); }
50%, 70% { filter: hue-rotate(60deg); }
75%, 100% { filter: hue-rotate(180deg); }
}

.corner-guide {
  position: absolute;
  width: 55px;
  height: 55px;
  opacity: 0.9;
}

.corner-guide::before,
.corner-guide::after {
  content: '';
  position: absolute;
  background: var(--jade-dust);
  animation: cornerPulse 6s ease-in-out infinite;
}

@keyframes cornerPulse {
0%, 20% { background: var(--red-orange); opacity: 0.6; }
25%, 45% { background: var(--young-pink); opacity: 0.7; }
50%, 70% { background: var(--jigglypuff); opacity: 0.8; }
75%, 100% { background: var(--jade-dust); opacity: 1; }
}

.corner-guide.top-left {
  top: 0;
  left: 0;
}

.corner-guide.top-left::before {
  top: 0;
  left: 0;
  width: 35px;
  height: 3px;
  border-radius: 2px;
}

.corner-guide.top-left::after {
  top: 0;
  left: 0;
  width: 3px;
  height: 35px;
  border-radius: 2px;
}

.corner-guide.top-right {
  top: 0;
  right: 0;
}

.corner-guide.top-right::before {
  top: 0;
  right: 0;
  width: 35px;
  height: 3px;
  border-radius: 2px;
}

.corner-guide.top-right::after {
  top: 0;
  right: 0;
  width: 3px;
  height: 35px;
  border-radius: 2px;
}

.corner-guide.bottom-left {
  bottom: 0;
  left: 0;
}

.corner-guide.bottom-left::before {
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  border-radius: 2px;
}

.corner-guide.bottom-left::after {
  bottom: 0;
  left: 0;
  width: 3px;
  height: 35px;
  border-radius: 2px;
}

.corner-guide.bottom-right {
  bottom: 0;
  right: 0;
}

.corner-guide.bottom-right::before {
  bottom: 0;
  right: 0;
  width: 35px;
  height: 3px;
  border-radius: 2px;
}

.corner-guide.bottom-right::after {
  bottom: 0;
  right: 0;
  width: 3px;
  height: 35px;
  border-radius: 2px;
}

/* Feedback Pills */
.capture-feedback {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}

.feedback-pill {
  display: none;
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 10px 22px;
  border-radius: 22px;
  font-size: 15px;
  font-weight: 500;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.feedback-pill.error-1 {
  animation: showError1 6s ease-in-out infinite;
}

.feedback-pill.error-2 {
  animation: showError2 6s ease-in-out infinite;
}

.feedback-pill.error-3 {
  animation: showError3 6s ease-in-out infinite;
}

.feedback-pill.success {
  animation: showSuccess 6s ease-in-out infinite;
  background: rgba(0, 210, 211, 0.9);
}

@keyframes showError1 {
0%, 18% { display: flex; opacity: 1; }
22%, 100% { opacity: 0; }
}

@keyframes showError2 {
0%, 22% { opacity: 0; }
25%, 43% { display: flex; opacity: 1; }
47%, 100% { opacity: 0; }
}

@keyframes showError3 {
0%, 47% { opacity: 0; }
50%, 68% { display: flex; opacity: 1; }
72%, 100% { opacity: 0; }
}

@keyframes showSuccess {
0%, 72% { opacity: 0; }
75%, 100% { display: flex; opacity: 1; }
}

.success-icon {
  animation: checkmarkScale 0.3s ease-out forwards;
  animation-delay: 4.5s;
  transform: scale(0);
}

@keyframes checkmarkScale {
to { transform: scale(1); }
}

/* Right Side Controls */
.camera-sidebar {
  width: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

/* Instruction Text */
.camera-instruction {
  text-align: center;
}

.camera-instruction p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.3;
}

/* Camera Controls */
.camera-controls {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.capture-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.capture-outer {
  width: 68px;
  height: 68px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 3px solid white;
  transition: all 0.3s ease;
}

.capture-outer:active {
  transform: scale(0.95);
}

.capture-inner {
  width: 54px;
  height: 54px;
  background: white;
  border-radius: 50%;
  position: relative;
  animation: captureAnimation 6s ease-in-out infinite;
}

@keyframes captureAnimation {
0%, 72% { background: white; }
75% { background: var(--jade-dust); transform: scale(0.9); }
78%, 100% { background: var(--jade-dust); }
}

.action-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.action-btn:active {
  transform: scale(0.95);
}

.action-btn svg {
  width: 20px;
  height: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .phone-mockup {
    transform: scale(0.7);
  }
}

@media (max-width: 768px) {
  .phone-mockup {
    transform: scale(0.5);
    margin: 0 auto;
  }

  .camera-demo {
    padding: 40px 10px;
  }

  .camera-demo-container {
    width: 100%;
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .phone-mockup {
    transform: scale(0.4);
    margin: 0 auto;
  }

  .camera-demo {
    height: 320px;
    display: flex;
    align-items: center;
  }

  .camera-demo-container {
    width: 100%;
    overflow: hidden;
  }
}
.features {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 80px;
}

.features-header h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--imperial-primer);
}

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

.feature-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--jade-dust), var(--jigglypuff), var(--young-pink));
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(0, 210, 211, 0.1), rgba(255, 107, 157, 0.1));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--jade-dust), var(--jigglypuff));
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--imperial-primer);
}

.feature-card p {
  color: #64748b;
  line-height: 1.8;
}

/* Stats Section */
.stats {
  background: linear-gradient(135deg, var(--imperial-primer), var(--saturated-sky));
  padding: 100px 40px;
  color: white;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
  top: -250px;
  right: -250px;
}

.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 60px;
  text-align: center;
}

.stat-item h3 {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--young-pink), var(--jigglypuff));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item p {
  font-size: 18px;
  opacity: 0.9;
}

/* Pricing */
.pricing {
  padding: 100px 40px;
  background: #f8fafb;
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-header h2 {
  font-size: 48px;
  font-weight: 800;
  color: var(--imperial-primer);
  margin-bottom: 16px;
}

.pricing-cards {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.price-card {
  background: white;
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.price-card.popular {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.price-card.popular::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--jigglypuff);
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.price-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.price-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--imperial-primer);
  margin-bottom: 20px;
}

.price-amount {
  font-size: 64px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--jade-dust), var(--clear-chill));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.price-period {
  color: #64748b;
  margin-bottom: 40px;
}

.price-features {
  list-style: none;
  margin-bottom: 40px;
}

.price-features li {
  padding: 12px 0;
  color: #64748b;
  position: relative;
  padding-left: 30px;
}

.price-features li::before {
  content: '✨';
  position: absolute;
  left: 0;
  font-size: 18px;
}

.price-cta {
  display: inline-block;
  width: 100%;
  padding: 16px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.price-card:not(.popular) .price-cta {
  background: rgba(0, 210, 211, 0.1);
  color: var(--jade-dust);
}

.price-card.popular .price-cta {
  background: linear-gradient(135deg, var(--jade-dust), var(--clear-chill));
  color: white;
}

.price-cta:hover {
  transform: scale(1.05);
}

/* CTA Section */
.cta-section {
  padding: 100px 40px;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.05), rgba(254, 202, 87, 0.05));
  position: relative;
}

.cta-section h2 {
  font-size: 48px;
  font-weight: 800;
  color: var(--imperial-primer);
  margin-bottom: 24px;
}

.cta-section p {
  font-size: 20px;
  color: #64748b;
  margin-bottom: 40px;
}

/* Footer */
footer {
  padding: 60px 40px;
  background: var(--imperial-primer);
  color: white;
  text-align: center;
}

.footer-content p {
  opacity: 0.8;
}

/* Responsive */
/* Blog Styles */
.blog-hero {
  padding: 140px 40px 80px;
  text-align: center;
  position: relative;
}

.blog-hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--imperial-primer);
}

.blog-subtitle {
  font-size: 20px;
  color: #64748b;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.blog-content-section {
  padding: 60px 40px 100px;
  background: #f8fafb;
}

.blog-container {
  max-width: 1000px;
  margin: 0 auto;
}

.blog-posts {
  display: grid;
  gap: 40px;
  margin-top: 40px;
}

.blog-post-preview {
  margin-bottom: 0;
}

.post-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.post-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--jade-dust), var(--jigglypuff), var(--young-pink));
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.post-card h2 {
  margin-bottom: 16px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
}

.post-card h2 a {
  color: var(--imperial-primer);
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-card h2 a:hover {
  background: linear-gradient(135deg, var(--jade-dust), var(--jigglypuff));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #64748b;
}

.post-categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.category {
  background: rgba(0, 210, 211, 0.1);
  color: var(--jade-dust);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.post-excerpt {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 24px;
}

.read-more {
  color: var(--jade-dust);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.read-more:hover {
  color: var(--jigglypuff);
  transform: translateX(5px);
}

/* Blog Post Individual Page */
.blog-post {
  background: white;
}

.post-header {
  padding: 140px 40px 60px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
  position: relative;
}

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

.post-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--imperial-primer);
}

.post-header .post-meta {
  justify-content: center;
  margin-bottom: 24px;
}

.post-header .post-excerpt {
  font-size: 20px;
  color: #64748b;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.post-content-section {
  padding: 60px 40px 100px;
  background: #f8fafb;
}

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

.post-content {
  background: white;
  border-radius: 24px;
  padding: 60px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 60px;
  line-height: 1.8;
}

.post-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--imperial-primer);
  margin: 40px 0 20px 0;
}

.post-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--imperial-primer);
  margin: 32px 0 16px 0;
}

.post-content h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--imperial-primer);
  margin: 24px 0 12px 0;
}

.post-content p {
  margin-bottom: 20px;
  color: #2c3e50;
}

.post-content ul, .post-content ol {
  margin: 20px 0;
  padding-left: 20px;
}

.post-content li {
  margin-bottom: 8px;
  color: #2c3e50;
}

.post-content blockquote {
  border-left: 4px solid var(--jade-dust);
  padding: 20px 24px;
  margin: 24px 0;
  background: rgba(0, 210, 211, 0.05);
  border-radius: 8px;
}

.post-content code {
  background: #f1f5f9;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 14px;
  color: var(--imperial-primer);
}

.post-content pre {
  background: #1e293b;
  color: #e2e8f0;
  padding: 24px;
  border-radius: 12px;
  overflow-x: auto;
  margin: 24px 0;
}

.post-content pre code {
  background: none;
  padding: 0;
  color: inherit;
}

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

.post-content th, .post-content td {
  border: 1px solid #e2e8f0;
  padding: 12px;
  text-align: left;
}

.post-content th {
  background: #f8fafc;
  font-weight: 600;
  color: var(--imperial-primer);
}

.post-footer {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.post-tags {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e2e8f0;
}

.tags-label {
  font-weight: 600;
  color: var(--imperial-primer);
  margin-right: 12px;
}

.tag {
  background: rgba(0, 210, 211, 0.1);
  color: var(--jade-dust);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-right: 8px;
  margin-bottom: 8px;
  display: inline-block;
}

.post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e2e8f0;
}

.prev-post, .next-post {
  text-decoration: none;
  color: var(--imperial-primer);
  font-weight: 600;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(0, 210, 211, 0.05);
  transition: all 0.3s ease;
  display: block;
}

.prev-post:hover, .next-post:hover {
  background: rgba(0, 210, 211, 0.1);
  transform: translateY(-2px);
}

.next-post {
  text-align: right;
}

.post-cta {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, rgba(0, 210, 211, 0.05), rgba(255, 107, 157, 0.05));
  border-radius: 20px;
}

.post-cta h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--imperial-primer);
  margin-bottom: 12px;
}

.post-cta p {
  color: #64748b;
  margin-bottom: 24px;
  font-size: 16px;
}

@media (max-width: 768px) {
  nav {
    padding: 15px 20px;
  }

  .logo {
    font-size: 20px;
    gap: 8px;
  }

  .logo-icon {
    width: 30px;
    height: 30px;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-link {
    display: none;
  }

  .nav-cta {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 20px;
  }

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

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

  .pricing-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .price-card {
    max-width: 380px;
    width: 100%;
  }

  .price-card.popular {
    transform: scale(1);
  }

  .post-content {
    padding: 40px 24px;
  }

  .post-navigation {
    grid-template-columns: 1fr;
  }

  .next-post {
    text-align: left;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 12px 16px;
  }

  .logo {
    font-size: 18px;
    gap: 6px;
  }

  .logo-icon {
    width: 28px;
    height: 28px;
  }

  .nav-cta {
    padding: 6px 12px;
    font-size: 13px;
  }

  .price-card {
    max-width: 340px;
    width: 100%;
  }
}
