/* public_html/assets/css/style.css
   CreatorEngine.PRO — Global site CSS (full)
   Hybrid Orange Primary + Blue Secondary
   Includes container spacing and global elements
*/

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: #F6F7FB;
  color: #111827;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== Container ===== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px; /* global horizontal padding */
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #E6E9EE;
}
.nav-inner { display:flex; align-items:center; justify-content:space-between; gap:20px; padding:12px 0; }
.logo { font-weight:800; font-size:20px; color:#111827; text-decoration:none; }
.logo span { color:#FF9F43; }
.nav-links { display:flex; gap:18px; align-items:center; }
.nav-links a { color:#111827; text-decoration:none; font-size:14px; font-weight:500; }
.nav-links a:hover { color:#FF7F11; }
.nav-cta { display:flex; gap:10px; align-items:center; }
.nav-link { color:#4B5563; text-decoration:none; font-size:14px; }

/* Buttons */
.btn-primary, .btn-secondary {
  display:inline-flex; align-items:center; justify-content:center; border-radius:999px; padding:10px 18px;
  font-weight:600; font-size:14px; text-decoration:none; cursor:pointer; border:0;
}
.btn-primary {
  background: linear-gradient(135deg,#FF9F43,#FF7F11);
  color:#fff;
  box-shadow: 0 10px 25px rgba(255,159,67,0.18);
}
.btn-primary:hover { filter:brightness(0.98); }
.btn-secondary {
  background:#fff; color:#111827; border:1.25px solid #D1D5DB;
}
.btn-secondary:hover { border-color:#FF9F43; color:#FF7F11; }
.full-width { width:100%; }

/* Sections */
.section { padding:96px 0; }
.section.bg-alt { background:#F6F7FB; }
.section.bg-accent { background:linear-gradient(180deg,#0F172A,#111827); color:#F9FAFB; }
.center { text-align:center; }

/* Hero */
.hero { padding:92px 0 88px; background: radial-gradient(circle at top left, #FFF4E5 0, #F6F7FB 50%, #E3EDFF 100%); }
.hero-grid { display:grid; grid-template-columns: minmax(0,1.25fr) minmax(0,1fr); gap:48px; align-items:center; }
.eyebrow { font-size:13px; color:#2563EB; font-weight:700; letter-spacing:0.04em; text-transform:uppercase; margin-bottom:10px; }
.hero-copy h1 { font-size:64px; line-height:1.03; margin:0 0 18px; font-weight:800; letter-spacing:-0.02em; }
.hero-copy h1 span { color:#FF7F11; }
.hero-sub { font-size:17px; line-height:1.8; color:#4B5563; margin:0 0 22px; max-width:640px; }
.hero-cta-row { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:12px; }
.hero-badges { display:flex; gap:8px; flex-wrap:wrap; margin-top:6px; color:#6B7280; font-size:12px; }
.hero-note { font-size:13px; color:#9CA3AF; margin-top:6px; }

/* Hero visual */
.hero-visual { position:relative; display:flex; justify-content:flex-end; }
.hero-visual img { width:100%; max-width:520px; border-radius:18px; box-shadow: 0 18px 45px rgba(15,23,42,0.18); object-fit:cover; display:block; }
.hero-card { position:absolute; left:-20px; top:28px; max-width:340px; z-index:30; background:#fff; border-radius:18px; padding:18px; box-shadow:0 18px 45px rgba(15,23,42,0.12); }

/* Headings */
.section-header { margin-bottom:32px; }
.section-header h2 { font-size:36px; margin:0 0 10px; line-height:1.15; }
.section-sub { margin:0 auto; font-size:15px; color:#6B7280; max-width:640px; }

/* Grids & cards */
.problem-grid, .feature-grid, .pricing-grid { display:grid; gap:20px; }
.problem-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
.feature-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
.pricing-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }

.problem-card, .feature-card, .price-card {
  background:#fff; border-radius:18px; padding:24px; box-shadow:0 10px 30px rgba(15,23,42,0.06);
}

/* Cross-strip */
.cross-strip { padding-bottom:56px; background:transparent; }
.strip-viewport { overflow-x:auto; -webkit-overflow-scrolling:touch; margin:18px 0; padding-bottom:8px; }
.strip-track { display:flex; gap:18px; align-items:stretch; width:max-content; }
.strip-card { min-width:280px; flex:0 0 auto; background:#fff; border-radius:14px; padding:18px; box-shadow:0 10px 30px rgba(15,23,42,0.06); }

/* Footer */
.footer { background:#020617; color:#9CA3AF; padding:26px 0; font-size:13px; }

/* Sticky CTA */
.sticky-cta { position:fixed; right:20px; bottom:20px; display:flex; gap:10px; z-index:60; align-items:center; }

/* Responsive */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size:44px; }
  .problem-grid, .feature-grid, .pricing-grid { grid-template-columns:1fr; }
}
@media (max-width: 640px) {
  .nav-links { display:none; }
  .hero-copy h1 { font-size:32px; }
  .section { padding:64px 0; }
}

/* small helpers */
.u-hidden { display:none; }

/* ===== Additional layout fixes (defensive overrides) ===== */
.container { max-width: 1140px !important; padding: 0 28px !important; margin: 0 auto !important; }
