/* ============================================================
   بتاع ترجمة — Btaatarjama.com
   Professional Dark Theme — Handcrafted Design
   Designed by: [Professional UI/UX Designer]
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  /* Colors */
  --bg-primary: #0c1212;
  --bg-secondary: #111a1a;
  --bg-card: #161f1f;
  --bg-card-hover: #1c2626;
  --bg-input: #0f1616;

  --gold: #d4a843;
  --gold-light: #e8c87a;
  --gold-dark: #b08a30;
  --gold-soft: rgba(212, 168, 67, 0.12);

  --teal: #2a8a8a;
  --teal-light: #4db8b8;
  --teal-soft: rgba(42, 138, 138, 0.12);

  --accent: #c45c3e;
  --accent-light: #e07a5f;

  --text-primary: #f2f0e9;
  --text-secondary: #a8b5b0;
  --text-muted: #6e7d78;
  --text-dim: #4a5a55;

  --border-subtle: rgba(255, 255, 255, 0.05);
  --border-medium: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(212, 168, 67, 0.2);
  --border-teal: rgba(42, 138, 138, 0.2);

  /* Spacing */
  --container: 1200px;
  --section-pad: 100px;
  --card-radius: 16px;
  --btn-radius: 12px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== RESET ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.75;
  direction: rtl;
  overflow-x: hidden;
  cursor: auto !important;
}

::selection {
  background: var(--gold);
  color: var(--bg-primary);
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--text-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--teal); }

/* ===== BACKGROUND TEXTURE ===== */
body {
  background-color: var(--bg-primary);
  background-image:
    radial-gradient(ellipse 60% 40% at 70% 20%, rgba(42, 138, 138, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(212, 168, 67, 0.04) 0%, transparent 50%);
}

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--teal-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: rgba(12, 18, 18, 0.85);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.nav-brand:hover { opacity: 0.85; }

.nav-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal), #1d6b6b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 2px 12px rgba(42, 138, 138, 0.25);
}

.nav-brand-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}

.nav-brand-text span {
  color: var(--gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.25s var(--ease-smooth);
  position: relative;
}

.nav-menu a:hover {
  color: var(--gold);
  background: var(--gold-soft);
}

.nav-menu a.active {
  color: var(--gold);
  background: var(--gold-soft);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--bg-primary) !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  margin-right: 8px;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212, 168, 67, 0.3);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 8px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--btn-radius);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s var(--ease-smooth);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
  box-shadow: 0 2px 12px rgba(212, 168, 67, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 168, 67, 0.35);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
}

.btn-secondary:hover {
  border-color: var(--teal);
  background: var(--teal-soft);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--border-gold);
}

.btn-outline:hover {
  background: var(--gold-soft);
  border-color: var(--gold);
}

.btn-lg {
  padding: 14px 36px;
  font-size: 1.05rem;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 560px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-title .highlight {
  display: block;
  margin-top: 4px;
}

.hero-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero Image */
.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-frame {
  position: relative;
  width: 420px;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-medium);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a3a3a, #0d2828, #152020);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.hero-image-placeholder .ph-icon {
  font-size: 4.5rem;
  opacity: 0.2;
}

.hero-image-placeholder .ph-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Floating stat cards */
.stat-float {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.stat-float .sf-number {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-float .sf-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.stat-float.sf-1 { top: 20px; left: -20px; }
.stat-float.sf-2 { bottom: 60px; right: -30px; }
.stat-float.sf-3 { bottom: 20px; left: 0; }

/* ===== SECTION HEADERS ===== */
.section-header {
  margin-bottom: 48px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold);
  opacity: 0.5;
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.25;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 520px;
}

/* ===== CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: all 0.4s var(--ease-smooth);
}

.card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: var(--border-teal);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.card-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-card) 0%, transparent 60%);
}

.card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.card-image-placeholder .cip-icon {
  font-size: 3rem;
  opacity: 0.15;
}

.card-image-placeholder .cip-label {
  position: absolute;
  bottom: 14px;
  right: 16px;
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.5;
  font-weight: 500;
}

.card-body {
  padding: 24px;
}

.card-tag {
  display: inline-block;
  background: var(--teal-soft);
  color: var(--teal-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid var(--border-teal);
}

.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
  color: var(--text-primary);
}

.card-text {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.card-link {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}

.card-link:hover {
  gap: 10px;
}

.card-date {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* Play button for videos */
.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-primary);
  font-size: 1.2rem;
  z-index: 3;
  opacity: 0;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.card:hover .play-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
}

/* ===== FIELD CARDS (Horizontal) ===== */
.fields-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--teal) transparent;
}

.fields-row::-webkit-scrollbar { height: 5px; }
.fields-row::-webkit-scrollbar-track { background: transparent; }
.fields-row::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

.field-card {
  flex: 0 0 270px;
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}

.field-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--field-color, var(--gold));
  opacity: 0.5;
  transition: all 0.4s;
}

.field-card:hover::before {
  opacity: 1;
  height: 4px;
}

.field-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  border-color: var(--field-color, var(--gold));
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.field-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--teal-soft);
  border: 1px solid var(--border-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.5rem;
  color: var(--teal-light);
  transition: all 0.4s;
}

.field-card:hover .field-icon {
  transform: scale(1.08) rotate(-3deg);
  background: rgba(42, 138, 138, 0.2);
}

.field-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.field-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ===== FEATURE CARDS ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-smooth);
  border-radius: 0 0 var(--card-radius) var(--card-radius);
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-5px);
  background: var(--bg-card-hover);
  border-color: var(--border-teal);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--teal-soft);
  border: 1px solid var(--border-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  transition: all 0.4s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.08);
  background: rgba(42, 138, 138, 0.2);
}

.feature-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* Stat number */
.stat-number {
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

/* ===== TABS ===== */
.tabs-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 22px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.tab-btn:hover {
  border-color: var(--border-teal);
  color: var(--text-primary);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--teal), #1d6b6b);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(42, 138, 138, 0.25);
}

/* ===== CTA BOX ===== */
.cta-box {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(42, 138, 138, 0.1), rgba(212, 168, 67, 0.06));
  border: 1px solid var(--border-teal);
  border-radius: 24px;
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-box h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-box p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.8;
}

/* ===== FORMS ===== */
.form-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 40px;
  position: relative;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: 20px 20px 0 0;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group label .req {
  color: var(--accent);
  margin-right: 4px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-input);
  border: 1.5px solid var(--border-subtle);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s;
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42, 138, 138, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-dim);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236e7d78' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 16px center;
  padding-left: 40px;
}

.form-select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ===== PRICING CARDS ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius);
  padding: 36px 28px;
  transition: all 0.4s;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--border-gold);
  background: linear-gradient(180deg, var(--bg-card), rgba(212, 168, 67, 0.03));
}

.pricing-card.featured::before {
  content: 'الأكثر طلباً';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 0 0 10px 10px;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.pricing-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 4px;
}

.pricing-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.pricing-features li i {
  color: var(--teal);
  font-size: 0.85rem;
}

/* ===== POST PAGE ===== */
.post-header {
  padding: 140px 0 40px;
  text-align: center;
}

.post-category {
  display: inline-block;
  background: var(--teal-soft);
  color: var(--teal-light);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid var(--border-teal);
}

.post-title {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  max-width: 760px;
  margin: 0 auto 20px;
  line-height: 1.3;
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--text-muted);
  font-size: 0.88rem;
  flex-wrap: wrap;
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.post-image {
  max-width: 880px;
  margin: 0 auto 40px;
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.post-image img {
  width: 100%;
  height: auto;
  display: block;
}

.post-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  font-size: 1.08rem;
  line-height: 2;
  color: var(--text-secondary);
}

.post-body h2,
.post-body h3 {
  color: var(--text-primary);
  margin-top: 2em;
  margin-bottom: 0.8em;
  font-weight: 700;
}

.post-body h2 {
  font-size: 1.5rem;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-subtle);
  display: inline-block;
}

.post-body p {
  margin-bottom: 1.5em;
}

.post-body strong {
  color: var(--gold-light);
  font-weight: 700;
}

.post-body ul,
.post-body ol {
  margin: 1em 2em 1.5em 0;
  padding-right: 1em;
}

.post-body li {
  margin-bottom: 0.6em;
}

.post-body blockquote {
  background: var(--teal-soft);
  border-right: 3px solid var(--teal);
  padding: 20px 24px;
  margin: 1.5em 0;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--text-primary);
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  padding: 140px 0 60px;
  text-align: center;
}

.about-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.about-hero p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-content h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 20px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 72px 0 32px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--gold), transparent);
  opacity: 0.5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .f-logo {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.footer-brand .f-logo span {
  color: var(--gold);
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--teal-soft);
  border-color: var(--teal);
  color: var(--teal-light);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--text-primary);
}

.footer-col a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 7px 0;
  font-size: 0.9rem;
  transition: all 0.3s;
  width: fit-content;
}

.footer-col a:hover {
  color: var(--gold);
  padding-right: 5px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-teal);
  color: var(--teal-light);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.3s;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-3px);
}

/* ===== PAGE HEADER (for inner pages) ===== */
.page-header {
  padding: 140px 0 40px;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.page-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: 80px 24px;
  grid-column: 1 / -1;
}

.empty-state i {
  font-size: 3.5rem;
  color: var(--text-dim);
  margin-bottom: 20px;
  display: block;
}

.empty-state h3 {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.empty-state p {
  color: var(--text-dim);
  font-size: 0.95rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-subtle);
    flex-direction: column;
    padding: 16px 24px;
    gap: 4px;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-desc {
    margin: 0 auto 32px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image-frame {
    width: 300px;
    height: 300px;
    margin: 0 auto;
  }

  .stat-float {
    display: none;
  }

  .section-header {
    text-align: center;
  }

  .section-header .section-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .section-eyebrow {
    justify-content: center;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .footer-brand p {
    margin: 0 auto 16px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-col a {
    margin: 0 auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-card {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 40px 24px;
  }

  .post-body {
    padding: 0 16px;
    font-size: 1rem;
  }
}

/* ===== CURSOR FIX ===== */
*, *::before, *::after, body, a, button, input, textarea, select,
[role="button"], label, .btn, .nav-link, .card, .social-link {
    cursor: auto !important;
}
a:hover, button:hover, .btn:hover, .nav-link:hover,
[role="button"]:hover, .card:hover, .social-link:hover {
    cursor: pointer !important;
}
input[type="text"], input[type="email"], input[type="password"],
input[type="search"], input[type="url"], input[type="number"],
textarea, [contenteditable="true"] {
    cursor: text !important;
}