/* ============================================
   Glimmo — Shared Styles (All Pages)
   ============================================ */

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

:root {
  --color-bg: #FFFFFF;
  --color-bg-dark: #1D1F25;
  --color-bg-muted: #F7F7F8;
  --color-text: #1D1F25;
  --color-text-secondary: #5A5D6B;
  --color-accent: #C26148;
  --color-accent-hover: #A8503B;
  --color-border: rgba(0, 0, 0, 0.08);
  --color-star: #F5A623;
  --font-body: 'Readex Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Source Serif 4', 'Georgia', serif;
  --container-max: 960px;
  --container-narrow: 680px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Scroll Animations
   ============================================ */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

/* ============================================
   Header
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text);
}

.logo:hover {
  opacity: 0.8;
}

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

.nav-link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text);
  transition: opacity var(--transition);
}

.nav-link:hover {
  opacity: 0.6;
}

.nav-cta-btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-bg);
  background: var(--color-text);
  padding: 8px 20px;
  border-radius: 100px;
  transition: background var(--transition);
}

.nav-cta-btn:hover {
  background: #333;
}

/* ============================================
   Hero Section (Homepage)
   ============================================ */

.hero {
  padding-top: 140px;
  padding-bottom: 48px;
  text-align: center;
  background: var(--color-bg);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
  color: var(--color-text);
}

.hero-character-img {
  display: block;
  width: 320px;
  height: auto;
  margin: 4px auto 0;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.btn-download {
  display: inline-block;
  transition: opacity var(--transition);
}

.btn-download img {
  height: 52px;
  width: auto;
}

.btn-download:hover {
  opacity: 0.8;
}

.hero-banner img {
  width: 100%;
}

/* ============================================
   Social Proof
   ============================================ */

.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.social-proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.social-proof-stars {
  color: var(--color-star);
  font-size: 18px;
  letter-spacing: 2px;
}

.social-proof-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
}

.social-proof-label {
  font-size: 13px;
  color: var(--color-text-secondary);
  font-weight: 400;
}

.social-proof-divider {
  width: 1px;
  height: 36px;
  background: var(--color-border);
}

/* ============================================
   Pain Points
   ============================================ */

.pain-points {
  padding: 80px 0;
  background: var(--color-bg-dark);
  color: var(--color-bg);
  text-align: center;
}

.pain-points-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 48px;
  color: var(--color-bg);
}

.pain-points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 48px;
}

.pain-point-card {
  padding: 32px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.pain-point-emoji {
  display: block;
  font-size: 32px;
  margin-bottom: 12px;
}

.pain-point-card p {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

.pain-points-answer {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.pain-points-answer strong {
  color: var(--color-bg);
}

/* ============================================
   USP Showcase Sections
   ============================================ */

.usp-section {
  padding: 80px 0;
}

.usp-section-alt {
  background: var(--color-bg-muted);
}

.usp-layout {
  display: flex;
  align-items: center;
  gap: 56px;
}

.usp-layout-reverse {
  flex-direction: row-reverse;
}

.usp-phone {
  flex: 0 0 300px;
  max-width: 300px;
}

.usp-phone img {
  width: 100%;
  border-radius: 28px;
}

.usp-content {
  flex: 1;
  min-width: 0;
}

.usp-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent);
  background: rgba(194, 97, 72, 0.1);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.usp-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--color-text);
}

.usp-desc {
  font-size: 17px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.usp-desc strong {
  color: var(--color-text);
}

.usp-highlights {
  list-style: none;
  margin-bottom: 24px;
}

.usp-highlights li {
  font-size: 16px;
  color: var(--color-text-secondary);
  padding: 6px 0;
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
}

.usp-highlights li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 16px;
}

.usp-highlights li strong {
  color: var(--color-text);
}

.usp-tagline {
  font-size: 17px;
  font-weight: 600;
  font-style: italic;
  color: var(--color-text);
}

/* ============================================
   Feature Badge
   ============================================ */

.feature-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent);
  background: rgba(194, 97, 72, 0.1);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

/* ============================================
   Features Sections (Homepage)
   ============================================ */

.features {
  padding: 80px 0;
}

.section-title {
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 60px;
  color: var(--color-text);
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 16px;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-image {
  flex: 1;
  min-width: 0;
}

.feature-image img {
  width: 100%;
}

.feature-text {
  flex: 1;
  min-width: 0;
}

.feature-text h3 {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-text);
}

.feature-text p {
  font-size: 17px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ============================================
   Testimonials
   ============================================ */

.testimonials {
  padding: 80px 0;
  background: var(--color-bg-muted);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.testimonial-card {
  background: var(--color-bg);
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid var(--color-border);
}

.testimonial-stars {
  color: var(--color-star);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.testimonial-source {
  font-size: 12px;
  color: var(--color-text-secondary);
}

.testimonial-link {
  text-align: center;
}

.testimonial-link a {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 15px;
}

.testimonial-link a:hover {
  opacity: 0.7;
}

/* ============================================
   Bottom Illustration (Homepage)
   ============================================ */

.bottom-illustration {
  padding: 20px 0 0;
}

.bottom-illustration img {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

/* ============================================
   Pricing Preview (Homepage)
   ============================================ */

.pricing-preview {
  padding: 80px 0;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.pricing-card {
  position: relative;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
}

.pricing-card.popular {
  border: 2px solid var(--color-text);
}

.pricing-popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-text);
  color: var(--color-bg);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--color-text);
}

.pricing-amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-dollar {
  font-size: 24px;
  vertical-align: top;
  position: relative;
  top: 8px;
}

.pricing-period {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
}

.pricing-features-list {
  list-style: none;
  margin-bottom: 28px;
  text-align: left;
}

.pricing-features-list li {
  font-size: 15px;
  color: var(--color-text-secondary);
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}

.pricing-features-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.pricing-btn {
  display: inline-block;
  width: 100%;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  border: 2px solid var(--color-text);
  color: var(--color-text);
  background: transparent;
  transition: var(--transition);
}

.pricing-btn:hover {
  background: var(--color-text);
  color: var(--color-bg);
}

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

.pricing-btn.primary:hover {
  background: #333;
}

.pricing-note {
  text-align: center;
}

.pricing-note a {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 15px;
}

.pricing-note a:hover {
  opacity: 0.7;
}

/* ============================================
   Early Builder
   ============================================ */

.early-builder {
  padding: 80px 0;
  background: var(--color-bg-muted);
  text-align: center;
}

.early-builder-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 20px;
  color: var(--color-text);
}

.early-builder-desc {
  font-size: 17px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 36px;
}

.early-builder-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* ============================================
   Bottom CTA
   ============================================ */

.bottom-cta {
  padding: 80px 0;
  text-align: center;
  background: var(--color-bg-dark);
  color: var(--color-bg);
}

.bottom-cta-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 16px;
  color: var(--color-bg);
}

.bottom-cta-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
}

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

/* ============================================
   Page Header (Subpages)
   ============================================ */

.page-header {
  padding-top: 140px;
  padding-bottom: 48px;
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}

/* ============================================
   Pricing Page (Full)
   ============================================ */

.pricing-page {
  padding: 0 0 80px;
}

.pricing-page-subtitle {
  text-align: center;
  font-size: 17px;
  color: var(--color-text-secondary);
  max-width: 520px;
  margin: -24px auto 48px;
  line-height: 1.6;
}

.pricing-compare-title {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin: 64px 0 32px;
  color: var(--color-text);
}

.pricing-compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  margin-bottom: 48px;
}

.pricing-compare th,
.pricing-compare td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.pricing-compare th {
  font-weight: 600;
  color: var(--color-text);
  background: var(--color-bg-muted);
}

.pricing-compare td {
  color: var(--color-text-secondary);
}

.pricing-compare td:nth-child(2),
.pricing-compare td:nth-child(3),
.pricing-compare th:nth-child(2),
.pricing-compare th:nth-child(3) {
  text-align: center;
  width: 120px;
}

.pricing-check {
  color: var(--color-accent);
  font-weight: 700;
}

.pricing-cross {
  color: #CCC;
}

/* ============================================
   FAQ Page
   ============================================ */

.faq-page {
  padding: 0 0 80px;
}

.faq-page-list {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.faq-page-item {
  border-bottom: 1px solid var(--color-border);
  padding: 32px 0;
}

.faq-page-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-page-item h3 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-text);
}

.faq-page-item p {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.faq-page-item p:last-child {
  margin-bottom: 0;
}

.faq-page-item a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-page-item a:hover {
  opacity: 0.7;
}

.faq-page-item strong {
  font-weight: 600;
  color: var(--color-text);
}

/* ============================================
   Homepage FAQ Accordion
   ============================================ */

.faq-section {
  padding: 80px 0;
}

.faq-list {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

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

.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--color-text);
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding-bottom: 22px;
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 1.7;
}

/* ============================================
   Article / Blog Page
   ============================================ */

.article-page {
  padding: 0 0 80px;
}

.article-content {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.article-content p {
  font-size: 17px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.article-content h2 {
  font-size: 28px;
  font-weight: 600;
  margin: 48px 0 20px;
  color: var(--color-text);
}

.article-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 32px 0 12px;
  color: var(--color-text);
}

/* ============================================
   Feeling Word Table
   ============================================ */

.feeling-table-wrapper {
  overflow-x: auto;
  margin: 32px 0;
  -webkit-overflow-scrolling: touch;
}

.feeling-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.7;
}

.feeling-table th,
.feeling-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}

.feeling-table th {
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
  width: 140px;
  background: #FAFAFA;
}

.feeling-table td {
  color: var(--color-text-secondary);
}

.feeling-table tr:last-child th,
.feeling-table tr:last-child td {
  border-bottom: none;
}

/* ============================================
   Redeem Code Page
   ============================================ */

.redeem-page {
  padding: 0 0 80px;
}

.redeem-content {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.redeem-content > p {
  font-size: 17px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.redeem-steps {
  list-style: none;
  counter-reset: step;
  margin: 32px 0;
}

.redeem-steps li {
  counter-increment: step;
  position: relative;
  padding: 20px 0 20px 72px;
  border-bottom: 1px solid var(--color-border);
  font-size: 17px;
  color: var(--color-text);
  line-height: 1.6;
}

.redeem-steps li:last-child {
  border-bottom: none;
}

.redeem-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-text);
  color: var(--color-bg);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.redeem-step-img {
  display: block;
  max-width: 280px;
  margin: 16px 0 0;
  border-radius: 12px;
}

.redeem-note {
  margin-top: 36px;
  padding: 24px;
  background: #F8F8F8;
  border-radius: 12px;
}

.redeem-note strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
}

.redeem-note p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 8px;
}

.redeem-note p:last-child {
  margin-bottom: 0;
}

.redeem-content a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.redeem-content a:hover {
  opacity: 0.7;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  padding: 32px 0;
  border-top: 1px solid var(--color-border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 14px;
  color: var(--color-text-secondary);
}

.footer-contact {
  font-size: 14px;
  color: var(--color-text-secondary);
}

.footer-contact a {
  color: var(--color-text);
  transition: opacity var(--transition);
}

.footer-contact a:hover {
  opacity: 0.6;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 768px) {
  .header-inner {
    height: 56px;
  }

  .nav {
    gap: 16px;
  }

  .nav-link {
    font-size: 13px;
  }

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

  .hero {
    padding-top: 120px;
    padding-bottom: 36px;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-character-img {
    width: 220px;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .hero-buttons {
    margin-bottom: 40px;
    gap: 16px;
  }

  .btn-download img {
    height: 46px;
  }

  .social-proof {
    gap: 20px;
    margin-top: 36px;
  }

  .social-proof-number {
    font-size: 20px;
  }

  .pain-points {
    padding: 56px 0;
  }

  .pain-points-title {
    font-size: 28px;
  }

  .pain-points-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .usp-section {
    padding: 56px 0;
  }

  .usp-layout,
  .usp-layout-reverse {
    flex-direction: column;
    text-align: center;
  }

  .usp-phone {
    flex: 0 0 auto;
    max-width: 240px;
    margin: 0 auto;
  }

  .usp-highlights {
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
  }

  .usp-title {
    font-size: 28px;
  }

  .features {
    padding: 56px 0;
  }

  .section-title {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .feature-row {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
  }

  .feature-row.reverse {
    flex-direction: column;
  }

  .feature-text {
    text-align: center;
  }

  .feature-text h3 {
    font-size: 22px;
  }

  .testimonials {
    padding: 56px 0;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-preview {
    padding: 56px 0;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card.popular {
    order: -1;
  }

  .early-builder {
    padding: 56px 0;
  }

  .early-builder-title {
    font-size: 28px;
  }

  .bottom-cta {
    padding: 56px 0;
  }

  .bottom-cta-title {
    font-size: 30px;
  }

  .page-header {
    padding-top: 110px;
    padding-bottom: 32px;
  }

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

  .faq-section {
    padding: 56px 0;
  }

  .faq-page-item h3 {
    font-size: 18px;
  }

  .redeem-steps li {
    padding-left: 60px;
  }

  .redeem-steps li::before {
    width: 40px;
    height: 40px;
    font-size: 17px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .pricing-compare th:nth-child(2),
  .pricing-compare th:nth-child(3),
  .pricing-compare td:nth-child(2),
  .pricing-compare td:nth-child(3) {
    width: 80px;
  }
}

@media (max-width: 480px) {
  .container,
  .container-narrow {
    padding: 0 16px;
  }

  .logo {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .nav {
    gap: 10px;
  }

  .nav-link:not(:last-of-type) {
    display: none;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-character-img {
    width: 180px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn-download img {
    height: 42px;
  }

  .feature-text h3 {
    font-size: 20px;
  }

  .feature-text p {
    font-size: 16px;
  }

  .feeling-table th {
    width: 100px;
    font-size: 13px;
  }

  .feeling-table td {
    font-size: 13px;
  }
}

/* ============================================
   Blog Listing Page
   ============================================ */

.blog-listing {
  padding: 0 0 80px;
}

.blog-card {
  display: block;
  padding: 32px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  margin-bottom: 20px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  border-color: rgba(0, 0, 0, 0.16);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.blog-card-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent);
  background: rgba(194, 97, 72, 0.1);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.blog-card h2 {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-card p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.blog-card-meta {
  font-size: 13px;
  color: var(--color-text-secondary);
  opacity: 0.7;
}

/* ============================================
   Blog Article Extras
   ============================================ */

.blog-breadcrumb {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 12px;
}

.blog-breadcrumb a {
  color: var(--color-accent);
}

.blog-meta {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-top: 8px;
}

.blog-cta {
  text-align: center;
  padding: 36px 24px;
  background: var(--color-bg-muted);
  border-radius: 16px;
  margin-top: 48px;
}

.blog-cta p {
  margin-bottom: 16px;
  font-size: 18px;
  color: var(--color-text);
}

.blog-cta .btn-download img {
  margin: 0 auto;
}

/* ============================================
   Contact Page
   ============================================ */

.contact-page {
  padding: 0 0 80px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
}

.contact-info-card svg {
  color: var(--color-accent);
  margin-bottom: 12px;
}

.contact-info-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--color-text);
}

.contact-info-card p {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}

.contact-info-card a {
  font-size: 14px;
  color: var(--color-accent);
  font-weight: 500;
}

.contact-info-card a:hover {
  opacity: 0.7;
}

.contact-form-wrapper {
  padding: 36px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: var(--color-bg);
}

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

.form-row {
  display: flex;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-bg);
  color: var(--color-text);
  outline: none;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235A5D6B' stroke-width='2'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

.form-error {
  font-size: 14px;
  color: #D44;
  margin: 0;
}

.form-submit {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-bg);
  background: var(--color-text);
  padding: 14px 32px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background var(--transition);
}

.form-submit:hover {
  background: #333;
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-privacy {
  font-size: 13px;
  color: var(--color-text-secondary);
  text-align: center;
}

.form-privacy a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 48px 24px;
}

.form-success h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text);
}

.form-success p {
  font-size: 16px;
  color: var(--color-text-secondary);
}

.form-another {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-accent);
  background: none;
  border: 2px solid var(--color-accent);
  padding: 10px 24px;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}

.form-another:hover {
  background: var(--color-accent);
  color: var(--color-bg);
}

/* Contact responsive */
@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-info {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-info-card {
    flex: 1;
    min-width: 200px;
  }

  .contact-form-wrapper {
    padding: 24px;
  }

  .form-row {
    flex-direction: column;
  }

  .blog-card {
    padding: 24px;
  }

  .blog-card h2 {
    font-size: 19px;
  }
}

@media (max-width: 480px) {
  .contact-info {
    flex-direction: column;
  }
}
