/*
Theme Name: 10x Premium Landing V5
Theme URI: https://10x-products.com/
Author: OpenAI
Description: Premium landing page theme for 10x Products with integrated neon configurator sections, trust content, FAQ, and legal pages.
Version: 5.2.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: tenx-premium
*/

:root{
  --bg:#efe7da;
  --bg-2:#f7f1e8;
  --panel:#ffffff;
  --text:#262626;
  --muted:#6e6459;
  --line:#e3d7c6;
  --accent:#111111;
  --gold:#b79258;
  --shadow:0 14px 42px rgba(0,0,0,.08);
  --radius:28px;
  --max:1320px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(183,146,88,.12), transparent 24%),
    radial-gradient(circle at top right, rgba(255,227,180,.24), transparent 20%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  line-height:1.65;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;height:auto;display:block}

.wrap{
  width:min(calc(100% - 32px), var(--max));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(247,241,232,.78);
  backdrop-filter:blur(12px) saturate(150%);
  border-bottom:1px solid rgba(0,0,0,.05);
}
.site-header__inner{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.site-brand{
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:14px;
}
.site-brand img {
	height: 60px;
    width: auto;
    display: block;
}
.site-nav{
  display:flex;
  align-items:center;
  gap:18px;
  font-size:14px;
  color:var(--muted);
}
.site-nav a:hover{color:var(--text)}

.hero{
  padding:56px 0 26px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:28px;
  align-items:stretch;
}
.card{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.hero-copy{
  padding:52px;
}
.eyebrow{
  display:inline-block;
  margin-bottom:16px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--muted);
}
h1,h2,h3{
  margin:0 0 14px;
  line-height:1.04;
}
h1{font-size:clamp(42px, 7vw, 82px)}
h2{font-size:clamp(30px, 4vw, 52px)}
h3{font-size:22px}
.lead{
  margin:0;
  color:var(--muted);
  font-size:18px;
  max-width:60ch;
}
.actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:26px;
}
.button{
  min-height:54px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 24px;
  border-radius:16px;
  border:1px solid var(--accent);
  font-weight:800;
  transition:transform .2s ease, opacity .2s ease, box-shadow .2s ease;
}
.button:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 24px rgba(0,0,0,.12);
}
.button--primary{
  background:var(--accent);
  color:#fff;
}
.button--secondary{
  background:#fff;
  color:var(--accent);
  border-color:var(--line);
}

.hero-visual{
  padding:18px;
}
.hero-stage{
  min-height:540px;
  height:100%;
  border-radius:24px;
  position:relative;
  overflow:hidden;
  display:grid;
  place-items:center;
  padding:32px;
  background:
    radial-gradient(circle at 70% 20%, rgba(255,214,140,.22), transparent 25%),
    radial-gradient(circle at 30% 64%, rgba(255,159,106,.14), transparent 28%),
    linear-gradient(135deg, #27272e 0%, #19191f 100%);
}
.hero-stage::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(transparent 0 76%, rgba(255,255,255,.03) 76% 77%, transparent 77%),
    linear-gradient(90deg, transparent 0 22%, rgba(255,255,255,.02) 22% 23%, transparent 23% 74%, rgba(255,255,255,.02) 74% 75%, transparent 75%);
  pointer-events:none;
}
.hero-neon{
  position:relative;
  font-size:clamp(48px, 7vw, 96px);
  line-height:1;
  font-weight:900;
  letter-spacing:.01em;
  color:#ffefc9;
  text-align:center;
  text-shadow:
    0 0 8px rgba(255,238,200,.92),
    0 0 22px rgba(255,220,156,.78),
    0 0 42px rgba(255,173,102,.65),
    0 0 90px rgba(255,173,102,.30);
}
.hero-neon::after{
  content:"";
  position:absolute;
  inset:-20% -10%;
  background:radial-gradient(circle, rgba(255,214,140,.12), transparent 58%);
  filter:blur(30px);
  z-index:-1;
}
.hero-note{
  margin-top:16px;
  color:rgba(255,255,255,.76);
  text-align:center;
  font-size:15px;
}
.hero-badges{
  margin-top:28px;
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
}
.hero-badges span{
  border:1px solid rgba(255,255,255,.13);
  background:rgba(255,255,255,.08);
  color:#fff;
  border-radius:999px;
  padding:10px 14px;
  font-size:13px;
}

.section{
  padding:22px 0;
}
.section-head{
  margin-bottom:18px;
}
.section-copy{
  color:var(--muted);
  font-size:17px;
}
.section-card{
  padding:36px;
}
.configurator-shell{
  min-height:320px;
}
.configurator-fallback{
  padding:18px;
  border:1px dashed var(--line);
  border-radius:18px;
  background:#fff9ef;
  color:var(--muted);
}

.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}
.grid-3{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}
.info-card,.trust-card,.faq-item,.step-card,.contact-card,.logo-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:22px;
}
.info-icon{
  width:44px;height:44px;
  border-radius:14px;
  display:grid;place-items:center;
  background:rgba(183,146,88,.14);
  color:var(--gold);
  font-weight:900;
  margin-bottom:14px;
}
.list{
  margin:0;
  padding-left:18px;
  color:var(--muted);
}
.list li + li{margin-top:8px}

.logo-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.logo-card{
  min-height:88px;
  display:grid;
  place-items:center;
  text-align:center;
  color:var(--muted);
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:13px;
}

.steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.step-number{
  width:40px;height:40px;
  border-radius:999px;
  display:grid;place-items:center;
  background:var(--accent);
  color:#fff;
  font-weight:900;
  margin-bottom:14px;
}

.faq{
  display:grid;
  gap:14px;
}
.faq-item h3{
  font-size:19px;
  margin-bottom:8px;
}
.faq-item p,
.contact-card p,
.info-card p,
.trust-card p,
.step-card p{
  margin:0;
  color:var(--muted);
}

.contact-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:22px;
}
.contact-meta{
  display:grid;
  gap:10px;
  color:var(--muted);
}
.cta-panel{
  text-align:center;
  background:linear-gradient(145deg, #fff 0%, #fbf6ef 100%);
}

.site-footer{
  padding:28px 0 110px;
  color:var(--muted);
  font-size:14px;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}
.footer-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}
.footer-links a:hover{color:var(--text)}

.sticky-cta{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:90;
  min-height:58px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 24px;
  border-radius:999px;
  background:#111;
  color:#fff;
  font-weight:900;
  box-shadow:0 16px 36px rgba(0,0,0,.18);
}
.sticky-cta:hover{
  transform:translateY(-1px);
}

@media (max-width: 1100px){
  .hero-grid,.grid-2,.grid-3,.steps,.contact-grid,.logo-strip{
    grid-template-columns:1fr;
  }
  .hero-copy,.section-card{
    padding:24px;
  }
  .hero-stage{
    min-height:380px;
  }
  .site-nav{
    display:none;
  }
}

@media (max-width: 680px){
  .site-footer{
    padding-bottom:96px;
  }
  .sticky-cta{
    left:12px;
    right:12px;
    bottom:12px;
  }
  h1{font-size:clamp(36px, 10vw, 54px)}
}


.references-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.reference-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(0,0,0,.04);
}
.reference-card img{
  width:100%;
  aspect-ratio: 4 / 3;
  object-fit:cover;
  background:#f7f1e8;
}
.reference-card__body{
  padding:18px;
}
.reference-card__title{
  font-size:18px;
  font-weight:800;
  margin:0 0 6px;
}
.reference-card__text{
  margin:0;
  color:var(--muted);
  font-size:15px;
}
.reference-help{
  margin-top:16px;
  color:var(--muted);
  font-size:14px;
}
@media (max-width:1100px){
  .references-grid{grid-template-columns:1fr;}
}
