/* ============================================
   AUTOM O — PREMIUM PRODUCT PAGE CSS
   High-energy, dark, neon accents
   Shared across all 4 product pages
   ============================================ */

/* --- Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}
@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.anim-fade-up   { animation: fadeUp 0.7s ease forwards; }
.anim-fade-in   { animation: fadeIn 0.6s ease forwards; }
.anim-float     { animation: float 4s ease-in-out infinite; }
.anim-pulse-glow { animation: pulse-glow 2.5s ease-in-out infinite; }

/* Scroll-triggered animation (add .reveal via JS intersection observer) */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ============================================
   SHARED COMPONENT STYLES
   ============================================ */

/* --- Premium Navbar --- */
.p-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.p-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.p-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.3px;
  flex-shrink: 0;
}
.p-nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-left: auto;
}
.p-nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.p-nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.p-nav-links a.active { color: var(--amber); }
.p-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--amber);
  color: #0a0a0a;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.p-nav-cta:hover { opacity: 0.88; }

/* --- Page Hero --- */
.p-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 32px;
  position: relative;
  overflow: hidden;
}
.p-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.p-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.p-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.6) 50%, rgba(10,10,10,0.92) 100%);
  z-index: 1;
}
.p-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}
.p-hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,140,0,0.12) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: pulse-glow 4s ease-in-out infinite;
}
.p-hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,140,255,0.06) 0%, transparent 70%);
  bottom: -100px; left: 20%;
  animation: pulse-glow 5s ease-in-out infinite 1s;
}
.p-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 0 80px;
}
.p-hero-text { animation: fadeUp 0.8s ease forwards; }
.p-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,140,0,0.1);
  border: 1px solid rgba(255,140,0,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.p-hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse-glow 2s ease-in-out infinite;
}
.p-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -3px;
  color: var(--text);
  margin-bottom: 24px;
}
.p-hero-headline .accent { color: var(--amber); }
.p-hero-headline .blue   { color: #00aaff; }
.p-hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.p-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--amber);
  color: #0a0a0a;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(255,140,0,0.25);
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,140,0,0.35);
}
.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-hero-ghost:hover { border-color: rgba(255,140,0,0.3); color: var(--text); }

.p-hero-visual {
  position: relative;
  animation: fadeUp 0.8s 0.2s ease both;
}
.p-hero-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,140,0,0.08);
}
.p-hero-image-wrap img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}
.p-hero-image-wrap:hover img { transform: scale(1.02); }
.p-hero-image-badge {
  position: absolute;
  background: rgba(17,17,17,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-body);
}
.p-hero-image-badge .num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--amber);
  display: block;
  line-height: 1.2;
}
.p-hero-image-badge.b1 { top: 20px; right: 20px; }
.p-hero-image-badge.b2 { bottom: 20px; left: 20px; }

/* --- Stats Bar --- */
.p-stats {
  padding: 60px 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.01);
}
.p-stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.p-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
  position: relative;
}
.p-stat-item + .p-stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.06);
}
.p-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--amber);
  line-height: 1.1;
  letter-spacing: -1px;
}
.p-stat-label {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 500;
}

/* --- Section Headers --- */
.p-section {
  padding: 100px 32px;
}
.p-section-bg { background: rgba(255,255,255,0.01); }
.p-section-dark { background: var(--bg2); }
.p-section-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 60px;
}

/* --- Feature Cards --- */
.f-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 0;
}
.f-card {
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.f-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,140,0,0.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.f-card:hover {
  border-color: rgba(255,140,0,0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.f-card:hover::after { opacity: 1; }
.f-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(255,140,0,0.08);
  border: 1px solid rgba(255,140,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}
.f-card:hover .f-icon {
  background: rgba(255,140,0,0.15);
}
.f-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.f-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- How It Works Steps --- */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.how-step {
  text-align: center;
  padding: 40px 28px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
}
.how-step:hover {
  border-color: rgba(255,140,0,0.2);
  transform: translateY(-4px);
}
.how-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: rgba(255,140,0,0.1);
  border: 1px solid rgba(255,140,0,0.2);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--amber);
  margin-bottom: 20px;
}
.how-step h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.how-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.how-step-arrow {
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,140,0,0.3);
  font-size: 20px;
}

/* --- Pricing Section --- */
.p-pricing {
  padding: 100px 32px;
  background: var(--bg2);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.p-pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.pr-card {
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.pr-card:hover {
  border-color: rgba(255,140,0,0.2);
  transform: translateY(-4px);
}
.pr-card.featured {
  border-color: rgba(255,140,0,0.3);
  background: rgba(255,140,0,0.04);
  position: relative;
}
.pr-card.featured::before {
  content: attr(data-badge);
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--amber);
  background: rgba(255,140,0,0.12);
  border: 1px solid rgba(255,140,0,0.3);
  border-radius: 100px;
  padding: 4px 14px;
  white-space: nowrap;
}
.pr-tier {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
  margin-bottom: 10px;
}
.pr-price {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 6px;
}
.pr-price .per {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 400;
}
.pr-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.pr-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 24px 0;
}
.pr-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.pr-features li {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pr-features li svg { flex-shrink: 0; margin-top: 2px; }
.pr-features li span { color: var(--text); }
.pr-cta {
  display: block;
  width: 100%;
  background: rgba(255,140,0,0.1);
  border: 1px solid rgba(255,140,0,0.2);
  color: var(--amber);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  padding: 14px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  margin-top: 24px;
  transition: background 0.2s, border-color 0.2s;
}
.pr-cta:hover {
  background: rgba(255,140,0,0.2);
  border-color: rgba(255,140,0,0.4);
}

/* --- Testimonial --- */
.p-testimonial {
  padding: 80px 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.p-testimonial-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
  letter-spacing: -0.3px;
  margin-bottom: 32px;
  font-style: italic;
}
.testimonial-quote::before { content: '"'; color: var(--amber); }
.testimonial-quote::after  { content: '"'; color: var(--amber); }
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,140,0,0.15);
  border: 1px solid rgba(255,140,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--amber);
}
.testimonial-info { text-align: left; }
.testimonial-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.testimonial-title {
  font-size: 13px;
  color: var(--text-muted);
}

/* --- FAQ Section --- */
.p-faq {
  padding: 80px 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.p-faq-inner {
  max-width: 800px;
  margin: 0 auto;
}
.faq-list { margin-top: 48px; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: color 0.2s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  gap: 16px;
}
.faq-question:hover { color: var(--amber); }
.faq-icon {
  font-size: 18px;
  color: var(--amber);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding-bottom: 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }

/* --- CTA Banner --- */
.p-cta-banner {
  padding: 80px 32px;
  background: linear-gradient(135deg, rgba(255,140,0,0.08) 0%, rgba(0,170,255,0.04) 100%);
  border-top: 1px solid rgba(255,140,0,0.1);
  text-align: center;
}
.p-cta-banner-inner {
  max-width: 680px;
  margin: 0 auto;
}
.p-cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.15;
}
.p-cta-banner p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

/* --- Demo Form --- */
.p-demo {
  padding: 80px 32px;
  background: var(--bg2);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.p-demo-inner {
  max-width: 600px;
  margin: 0 auto;
}
.p-demo-card {
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 48px;
}
.p-demo-card h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.p-demo-card > p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.fg { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.fg label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.fg input, .fg select, .fg textarea {
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: rgba(255,140,0,0.4);
}
.fg select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238a8a8a' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.fg textarea { resize: vertical; min-height: 80px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f-submit {
  width: 100%;
  background: var(--amber);
  color: #0a0a0a;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  padding: 15px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  transition: opacity 0.2s, transform 0.2s;
}
.f-submit:hover { opacity: 0.88; transform: translateY(-1px); }
.f-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.f-success {
  display: none;
  text-align: center;
  padding: 48px 20px;
}
.f-success.show { display: block; }
.f-success svg { margin: 0 auto 16px; display: block; }
.f-success h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.f-success p { font-size: 14px; color: var(--text-muted); }
.f-err {
  display: none;
  background: rgba(255,80,80,0.1);
  border: 1px solid rgba(255,80,80,0.25);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: #ff6b6b;
  margin-bottom: 16px;
}
.f-err.show { display: block; }

/* --- Footer --- */
.p-footer {
  padding: 60px 32px 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.p-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.p-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 48px;
}
.p-footer-brand { max-width: 240px; }
.p-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.p-footer-tagline { font-size: 13px; color: var(--text-dim); line-height: 1.6; }
.p-footer-links { display: flex; gap: 60px; }
.p-footer-col { display: flex; flex-direction: column; gap: 12px; }
.p-footer-col-head {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
  margin-bottom: 4px;
}
.p-footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.p-footer-col a:hover { color: var(--text); }
.p-footer-bottom {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-dim);
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.p-footer-bottom span + span::before { content: '|'; margin: 0 8px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .p-hero-content { grid-template-columns: 1fr; gap: 48px; }
  .p-hero-visual { order: -1; max-width: 560px; margin: 0 auto; }
  .p-hero-text { text-align: center; }
  .p-hero-sub { margin: 0 auto 40px; }
  .p-hero-cta { justify-content: center; }
  .f-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .how-step-arrow { display: none; }
  .pricing-card-grid { grid-template-columns: 1fr; max-width: 480px; margin: 60px auto 0; }
  .p-stats-inner { flex-wrap: wrap; gap: 24px; }
  .p-stat-item { padding: 0 24px; }
}

@media (max-width: 768px) {
  .p-nav-inner { padding: 0 20px; gap: 20px; }
  .p-nav-links { display: none; }
  .p-hero { padding: 0 20px; }
  .p-hero-content { padding: 80px 0 60px; }
  .p-section { padding: 60px 20px; }
  .p-pricing { padding: 60px 20px; }
  .p-demo { padding: 60px 20px; }
  .p-demo-card { padding: 32px 24px; }
  .p-cta-banner { padding: 60px 20px; }
  .p-faq { padding: 60px 20px; }
  .p-testimonial { padding: 60px 20px; }
  .p-footer { padding: 60px 20px 40px; }
  .p-footer-top { flex-direction: column; gap: 32px; }
  .p-footer-links { gap: 32px; flex-wrap: wrap; }
  .fg-row { grid-template-columns: 1fr; }
  .p-stats { padding: 40px 20px; }
  .p-stat-item { padding: 0 20px; }
  .p-stat-num { font-size: 28px; }
}

@media (max-width: 480px) {
  .p-hero-headline { font-size: 34px; letter-spacing: -1.5px; }
  .p-hero-cta { flex-direction: column; }
  .btn-hero-primary, .btn-hero-ghost { width: 100%; justify-content: center; }
  .section-title { font-size: 26px; }
  .pr-price { font-size: 36px; }
}