/* ============================================ */
/* CORE STYLING VARIABLES                       */
/* ============================================ */
:root {
  --bg-main: #0c0c0c;
  --bg-card: #141414;
  --border-color: #262626;
  --text-main: #ffffff;
  --text-muted: #8e8e93;
  --gold-accent: #c9a054;
  --gold-hover: #e0b86f;
  --critical-highlight: rgba(201, 160, 84, 0.1);
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* ============================================ */
/* NAVBAR — Fixed, Bigger, Mobile-Ready         */
/* ============================================ */
.navbar {
  border-bottom: 1px solid var(--border-color);
  background-color: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

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

.logo-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-group a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}
.nav-slogan {
  color: var(--gold-accent);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 4px;
}
/* Desktop Links */
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
  white-space: nowrap;
}

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

.cta-button-nav {
  color: var(--text-main) !important;
  text-decoration: none;
  font-size: 0.85rem;
  border: 1px solid var(--border-color);
  padding: 10px 20px;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: 500;
  white-space: nowrap;
}

.cta-button-nav:hover {
  background-color: var(--text-main);
  color: var(--bg-main) !important;
}

/* ============================================ */
/* MOBILE HAMBURGER & DROPDOWN                  */
/* ============================================ */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: rgba(12, 12, 12, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 24px 24px 24px;
  gap: 4px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 14px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s ease;
}

.mobile-menu a:hover {
  color: var(--gold-accent);
}

.mobile-menu .mobile-cta {
  margin-top: 8px;
  text-align: center;
  border: 1px solid var(--gold-accent);
  border-radius: 6px;
  padding: 14px;
  font-weight: 600;
  color: var(--gold-accent);
}

/* Show hamburger on mobile, hide desktop links */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 12px 16px;
  }
  .nav-logo-img {
    height: 34px;
    max-width: 170px;
  }
  .nav-slogan {
    font-size: 0.55rem;
    letter-spacing: 0.2em;
  }
}

/* ============================================ */
/* HERO                                         */
/* ============================================ */
.hero {
  padding: 160px 20px 100px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.hero-master-logo {
  width: 280px;
  max-width: 80%;
  height: auto;
  margin: 0 auto 40px auto;
  display: block;
  filter: drop-shadow(0 10px 40px rgba(201, 160, 84, 0.2));
  animation: floatIn 1.5s ease-out forwards;
}

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

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

.hero h1 {
  font-size: 3.2rem;
  line-height: 1.1;
  letter-spacing: -0.05em;
  margin-bottom: 24px;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.25rem;
  max-width: 680px;
  margin: 0 auto 40px auto;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* ============================================ */
/* BUTTONS                                      */
/* ============================================ */
.btn-primary {
  background-color: var(--gold-accent);
  color: #000000;
  padding: 14px 30px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}

.btn-primary:hover {
  background-color: var(--gold-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 14px 30px;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease;
  font-size: 0.95rem;
}

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

/* ============================================ */
/* FEATURE CARDS (LEGACY)                       */
/* ============================================ */
.features-section {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 20px;
}

.section-title-container {
  text-align: center;
  margin-bottom: 60px;
}

.section-title-container h2 {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-title-container p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

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

.feature-category-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 40px 30px;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.category-icon-svg {
  width: 28px;
  height: 28px;
  color: var(--gold-accent);
  stroke-width: 1.5;
}

.feature-category-card h3 {
  font-size: 1.4rem;
  margin: 0;
  letter-spacing: -0.01em;
}

.category-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  border-bottom: 1px solid #222;
  padding-bottom: 15px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: #d1d1d6;
}

.feature-list li.critical-value {
  background-color: var(--critical-highlight);
  border: 1px solid rgba(201, 160, 84, 0.2);
  border-radius: 4px;
  padding: 10px;
}

.gold-icon {
  width: 16px;
  height: 16px;
  color: var(--gold-accent);
  stroke-width: 2;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ============================================ */
/* HIGHLIGHT BLOCK                              */
/* ============================================ */
.highlight-block {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-main) 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
  padding: 80px 20px;
  margin: 80px 0;
}

.highlight-content {
  max-width: 600px;
  margin: 0 auto;
}

.large-highlight-icon {
  width: 36px;
  height: 36px;
  color: var(--gold-accent);
  stroke-width: 1;
  margin-bottom: 16px;
}

.highlight-block h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.highlight-block p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ============================================ */
/* FOOTER                                       */
/* ============================================ */
.signature-section {
  text-align: center;
  max-width: 800px;
  margin: 100px auto 40px auto;
  padding: 0 20px;
}

.footer-logo-img {
  height: 90px;
  width: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 20px rgba(201, 160, 84, 0.2));
}

.final-echo {
  color: var(--gold-accent);
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 50px;
}

.signature-section blockquote {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 50px;
  color: #f1f1f1;
}

.final-cta {
  display: inline-block;
  margin-bottom: 80px;
}

.brand-signature {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  color: #444;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ============================================ */
/* PRICING PAGE                                 */
/* ============================================ */
.pricing-hero {
  padding: 160px 20px 60px 20px;
  text-align: center;
  border-bottom: none;
}

.pricing-hero h1 {
  font-size: 2.8rem;
  color: #e25822;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.pricing-hero .subtitle {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto;
}

.pricing-section {
  max-width: 1100px;
  margin: 0 auto 100px auto;
  padding: 0 20px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  align-items: center;
}

.pricing-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: #444;
}

.highlight-card {
  border: 2px solid var(--gold-accent);
  background: linear-gradient(180deg, #1a150b 0%, var(--bg-card) 100%);
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(201, 160, 84, 0.15);
  z-index: 10;
}

.highlight-card:hover {
  transform: scale(1.05) translateY(-5px);
  border-color: var(--gold-hover);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--gold-accent);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 20px;
}

.tier-header {
  margin-bottom: 24px;
  text-align: center;
}

.tier-header h3 {
  font-size: 1.5rem;
  margin: 0 0 8px 0;
}

.tier-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.price-block {
  text-align: center;
  margin-bottom: 30px;
}

.currency { font-size: 1.5rem; vertical-align: super; color: var(--text-main); }
.price { font-size: 3.5rem; font-weight: 700; color: var(--text-main); letter-spacing: -0.05em; }
.period { font-size: 1rem; color: var(--text-muted); }

.full-width {
  display: block;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #d1d1d6;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 12px;
}

.pricing-features li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.check-icon { width: 18px; height: 18px; color: var(--text-muted); }
.gold-check { width: 18px; height: 18px; color: var(--gold-accent); }

.wl-pricing-callout {
  max-width: 700px;
  margin: 0 auto 60px auto;
  padding: 24px 30px;
  background: rgba(226,88,34,0.06);
  border: 1px solid rgba(226,88,34,0.2);
  border-radius: 8px;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.wl-pricing-callout .wl-callout-icon { width: 28px; height: 28px; color: #e25822; flex-shrink: 0; }
.wl-pricing-callout p { margin: 0; font-size: 0.95rem; color: #d1d1d6; }
.wl-pricing-callout strong { color: #e25822; }

/* ============================================ */
/* COMPARISON TABLE                             */
/* ============================================ */
.comparison-section { max-width: 900px; margin: 100px auto; padding: 0 20px; }
.comparison-section h2 { text-align: center; font-size: 2rem; color: #e25822; margin-bottom: 40px; }
.comparison-table { width: 100%; border-collapse: collapse; }

.comparison-table th {
  text-align: left; padding: 16px 20px; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-muted); border-bottom: 1px solid var(--border-color);
}
.comparison-table th:not(:first-child) { text-align: center; }
.comparison-table td {
  padding: 16px 20px; font-size: 0.95rem; color: #d1d1d6;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.comparison-table td:not(:first-child) { text-align: center; }
.comparison-table .feature-name { font-weight: 500; color: #f1f1f1; }
.check-yes { color: var(--gold-accent); font-weight: 700; font-size: 1.1rem; }
.check-no { color: #444; }
.table-highlight-row { background: rgba(226,88,34,0.05); }

/* ============================================ */
/* FAQ                                          */
/* ============================================ */
.faq-section { max-width: 700px; margin: 100px auto; padding: 0 20px; }
.faq-section h2 { text-align: center; font-size: 2rem; color: #e25822; margin-bottom: 50px; }
.faq-item { margin-bottom: 32px; border-bottom: 1px solid var(--border-color); padding-bottom: 24px; }
.faq-item h3 { font-size: 1.1rem; margin-bottom: 8px; color: #f1f1f1; }
.faq-item p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin: 0; }

/* ============================================ */
/* CONTACT PAGE                                 */
/* ============================================ */
.contact-page-body { background-color: #080808; }
.contact-section { max-width: 1200px; margin: 140px auto 100px auto; padding: 0 20px; }
.contact-container { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.contact-info h2 { font-size: 2.8rem; color: #e25822; margin-bottom: 12px; letter-spacing: -0.03em; line-height: 1.1; }
.contact-subtitle { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 40px; line-height: 1.6; }

.contact-benefits { list-style: none; padding: 0; }
.contact-benefits li { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 30px; }
.contact-benefits li div strong { display: block; font-size: 1.1rem; margin-bottom: 4px; color: #fff; }
.contact-benefits li div span { color: var(--text-muted); font-size: 0.95rem; }

.benefit-icon-wrap {
  width: 40px; height: 40px; border-radius: 8px;
  background: rgba(226,88,34,0.1); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.benefit-icon-wrap .b-icon { width: 20px; height: 20px; color: #e25822; }

.contact-form-card {
  background-color: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: 12px; padding: 40px; box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.form-group { margin-bottom: 24px; }
.form-row { display: flex; gap: 20px; }
.half-width { flex: 1; }

.sales-form label {
  display: block; margin-bottom: 8px; font-size: 0.85rem;
  color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.05em; font-weight: 600;
}

.sales-form input[type="text"],
.sales-form input[type="email"],
.sales-form select,
.sales-form textarea {
  width: 100%; padding: 14px 16px; background-color: #0c0c0c;
  border: 1px solid #333; border-radius: 6px; color: #fff;
  font-size: 1rem; font-family: inherit; box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.sales-form input:focus,
.sales-form select:focus,
.sales-form textarea:focus { outline: none; border-color: #e25822; }

.form-submit-btn {
  width: 100%; margin-top: 10px; font-size: 1.1rem; padding: 16px;
  background-color: #e25822; color: #fff; border: none; cursor: pointer;
  transition: background-color 0.25s ease, transform 0.2s ease;
}
.form-submit-btn:hover { background-color: #c94d1a; transform: translateY(-2px); }

.form-privacy-note {
  text-align: center; font-size: 0.8rem; color: #555;
  margin-top: 16px; display: flex; align-items: center; justify-content: center; gap: 6px;
}

.contact-social { margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--border-color); }
.contact-social p {
  font-size: 0.85rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px;
}

/* ============================================ */
/* SOCIAL LINKS                                 */
/* ============================================ */
.social-links { display: flex; gap: 16px; }
.social-link {
  width: 44px; height: 44px; border-radius: 8px;
  border: 1px solid var(--border-color); display: flex;
  align-items: center; justify-content: center;
  color: var(--text-muted); text-decoration: none;
  transition: all 0.25s ease;
}
.social-link:hover { border-color: #e25822; color: #e25822; background: rgba(226,88,34,0.08); }
.social-link svg { width: 20px; height: 20px; }

.footer-social-links { display: flex; justify-content: center; gap: 16px; margin-bottom: 30px; }
.footer-social-link { color: var(--text-muted); transition: color 0.2s ease; }
.footer-social-link:hover { color: #e25822; }

/* ============================================ */
/* VALUE STRIP (HOME)                           */
/* ============================================ */
.value-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  max-width: 1000px; margin: -40px auto 0 auto;
  padding: 0 20px; gap: 24px; position: relative; z-index: 10;
}
.value-card {
  background-color: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: 10px; padding: 30px 24px; text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.value-card:hover { transform: translateY(-4px); border-color: var(--gold-accent); }
.value-icon { width: 32px; height: 32px; color: var(--gold-accent); margin-bottom: 14px; }
.value-card h4 { font-size: 1rem; margin: 0 0 8px 0; color: #f1f1f1; }
.value-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ============================================ */
/* HOW IT WORKS (HOME)                          */
/* ============================================ */
.how-it-works { max-width: 1100px; margin: 100px auto; padding: 0 20px; text-align: center; }
.how-it-works h2 { font-size: 2.5rem; letter-spacing: -0.02em; margin-bottom: 12px; color: #e25822; }
.how-it-works-sub { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 60px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step-card { text-align: center; }
.step-number {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, #e25822, #c9a054);
  color: #fff; font-weight: 700; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px auto;
}

/* ============================================ */
/* SCREENSHOT PLACEHOLDERS                      */
/* ============================================ */
.screenshot-placeholder,
.pillar-screenshot {
  width: 100%; aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #1a1a1a 0%, #111 100%);
  border: 2px dashed var(--border-color); border-radius: 12px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; margin-bottom: 20px;
  transition: border-color 0.3s ease; position: relative; overflow: hidden;
}
.screenshot-placeholder:hover,
.pillar-screenshot:hover { border-color: var(--gold-accent); }
.pillar-screenshot:hover { border-color: #e25822; }
.screenshot-placeholder .placeholder-icon,
.pillar-screenshot .ph-icon { width: 44px; height: 44px; color: #333; margin-bottom: 10px; }
.screenshot-placeholder .placeholder-text,
.pillar-screenshot .ph-label { color: #444; font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase; }
.step-card h3 { font-size: 1.2rem; margin: 0 0 8px 0; }
.step-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ============================================ */
/* SOCIAL PROOF / TESTIMONIAL                   */
/* ============================================ */
.social-proof { max-width: 800px; margin: 100px auto; padding: 0 20px; text-align: center; }
.testimonial-card {
  background-color: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: 12px; padding: 50px 40px; position: relative;
}
.testimonial-card .quote-icon {
  width: 40px; height: 40px; color: var(--gold-accent);
  opacity: 0.3; position: absolute; top: 30px; left: 30px;
}
.testimonial-card blockquote {
  font-size: 1.3rem; font-style: italic; line-height: 1.6;
  color: #d1d1d6; margin: 0 0 20px 0;
}
.testimonial-author { color: #e25822; font-weight: 600; font-size: 0.95rem; }
.testimonial-role { color: var(--text-muted); font-size: 0.85rem; }

/* ============================================ */
/* FINAL CTA SECTION                            */
/* ============================================ */
.final-cta-section {
  text-align: center; padding: 80px 20px 60px 20px;
  border-top: 1px solid var(--border-color);
}
.final-cta-section h2 { font-size: 2.2rem; color: #e25822; margin-bottom: 12px; }
.final-cta-section p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 30px; }

/* ============================================ */
/* FEATURES PAGE — PILLARS                      */
/* ============================================ */
.features-hero { padding: 160px 20px 60px 20px; text-align: center; border-bottom: 1px solid var(--border-color); }
.features-hero h1 { font-size: 2.8rem; color: #e25822; letter-spacing: -0.03em; margin-bottom: 12px; }
.features-hero .subtitle { color: var(--text-muted); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }

.pillar-section { max-width: 1100px; margin: 0 auto; padding: 80px 20px; }
.pillar-section + .pillar-section { border-top: 1px solid var(--border-color); }
.pillar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.pillar-grid.reverse { direction: rtl; }
.pillar-grid.reverse .pillar-text { direction: ltr; }
.pillar-text h2 { font-size: 1.8rem; color: #e25822; margin-bottom: 12px; letter-spacing: -0.02em; }
.pillar-text .pillar-desc { color: var(--text-muted); font-size: 1rem; margin-bottom: 24px; line-height: 1.6; }

.pillar-feature-list { list-style: none; padding: 0; }
.pillar-feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px; font-size: 0.95rem; color: #d1d1d6; line-height: 1.5;
}
.pillar-feature-list li .pf-icon {
  width: 18px; height: 18px; color: var(--gold-accent);
  flex-shrink: 0; margin-top: 2px;
}

.white-label-highlight {
  background: linear-gradient(180deg, rgba(226,88,34,0.08) 0%, rgba(201,160,84,0.05) 100%);
  border: 1px solid rgba(226,88,34,0.25); border-radius: 12px;
  padding: 50px 40px; text-align: center; max-width: 900px; margin: 0 auto 60px auto;
}
.white-label-highlight .wl-icon { width: 48px; height: 48px; color: #e25822; margin-bottom: 16px; }
.white-label-highlight h2 { font-size: 1.6rem; color: #e25822; margin-bottom: 12px; }
.white-label-highlight p { color: #d1d1d6; font-size: 1rem; max-width: 550px; margin: 0 auto 20px auto; line-height: 1.6; }
.white-label-highlight .brand-flow {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap; font-size: 0.9rem; color: var(--text-muted);
}
.white-label-highlight .brand-flow span { color: var(--gold-accent); font-weight: 600; }
.white-label-highlight .brand-flow .arrow { color: #e25822; font-size: 1.4rem; }
.white-label-highlight .powered-by-note { margin-top: 18px; font-size: 0.8rem; color: #555; letter-spacing: 0.05em; }

/* ============================================ */
/* PHILOSOPHY PAGE                              */
/* ============================================ */
.philosophy-hero { padding: 180px 20px 80px 20px; text-align: center; border-bottom: 1px solid var(--border-color); }
.philosophy-hero .phoenix-icon-large {
  width: 64px; height: 64px; color: #e25822;
  margin-bottom: 24px; animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
.philosophy-hero h1 { font-size: 3rem; color: #e25822; margin-bottom: 16px; letter-spacing: -0.03em; }
.philosophy-hero .subtitle { font-size: 1.2rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.philosophy-content { max-width: 800px; margin: 80px auto; padding: 0 20px; }
.belief-block { margin-bottom: 80px; text-align: center; }
.belief-block .belief-icon { width: 40px; height: 40px; color: var(--gold-accent); margin-bottom: 16px; }
.belief-block h2 { font-size: 1.8rem; color: #e25822; margin-bottom: 16px; letter-spacing: -0.02em; }
.belief-block p { font-size: 1.05rem; color: #d1d1d6; line-height: 1.8; max-width: 650px; margin: 0 auto; }
.belief-block .highlight-phrase { color: var(--gold-accent); font-weight: 600; }
.philosophy-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, #e25822, transparent);
  margin: 0 auto 80px auto;
}
.closing-statement { text-align: center; padding: 60px 20px 100px 20px; border-top: 1px solid var(--border-color); }
.closing-statement h2 { font-size: 2rem; color: #e25822; margin-bottom: 20px; }
.closing-statement p { font-size: 1.1rem; color: var(--text-muted); max-width: 550px; margin: 0 auto 30px auto; line-height: 1.7; }
.philosophy-hero {
  position: relative;
  overflow: hidden;
}

.philosophy-hero::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  background-image: url('/background.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.philosophy-hero > * {
  position: relative;
  z-index: 1;
}
/* ============================================ */
/* RESPONSIVE — ALL PAGES                       */
/* ============================================ */
@media (max-width: 900px) {
  .contact-container { grid-template-columns: 1fr; gap: 40px; }
  .form-row { flex-direction: column; gap: 0; }
  .contact-info h2 { font-size: 2rem; }
  .highlight-card { transform: scale(1); box-shadow: none; }
  .highlight-card:hover { transform: translateY(-5px); }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .value-strip { grid-template-columns: 1fr; margin-top: -20px; }
  .steps-grid { grid-template-columns: 1fr; gap: 50px; }
  .pillar-grid { grid-template-columns: 1fr; gap: 30px; }
  .pillar-grid.reverse { direction: ltr; }
  .how-it-works h2,
  .features-hero h1,
  .pricing-hero h1 { font-size: 1.8rem; }
  .philosophy-hero h1 { font-size: 2rem; }
  .belief-block h2,
  .pillar-text h2 { font-size: 1.4rem; }
  .belief-block p { font-size: 0.95rem; }
  .testimonial-card blockquote { font-size: 1.1rem; }
  .comparison-table th,
  .comparison-table td { padding: 12px 10px; font-size: 0.8rem; }
}
footer .signature-section a:hover {
  color: #e25822 !important;
}
/* Screenshot Images — replaces placeholders */
.screenshot-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  display: block;
  margin-bottom: 20px;
  transition: border-color 0.3s ease;
}

.screenshot-img:hover {
  border-color: var(--gold-accent);
}
.screenshot-img {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}
/* ============================================ */
/* GHOST LOGO — PHILOSOPHY PAGE                 */
/* ============================================ */
.philosophy-hero {
  position: relative;
  overflow: hidden;
}

.philosophy-hero::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  background-image: url('/background.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.philosophy-hero > * {
  position: relative;
  z-index: 1;
}

/* ============================================ */
/* GHOST LOGO — CONTACT PAGE (Left Side)        */
/* ============================================ */
.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-section::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 22%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  background-image: url('/background.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.contact-container {
  position: relative;
  z-index: 1;
}

/* On mobile, center it since the layout stacks */
@media (max-width: 900px) {
  .contact-section::after {
    left: 50%;
    opacity: 0.05;
  }
}
/* Footer Email Link */
.footer-email {
  margin-bottom: 30px;
}

.footer-email a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-email a:hover {
  color: #e25822;
}
