/* =========================================================
   Fexoya — fexoya.com
   Design system + home page styles
   Layout language adapted from a CalcxBuild-style layout,
   re-skinned with an amber/orange repair-brand accent.
   ========================================================= */

/* ---------- 1. Tokens ---------- */
.fexoya-home-content {
  /* brand */
  --brand:        #F26A1B;
  --brand-strong: #D9540B;
  --brand-soft:   #FFF3EA;
  --brand-ring:   rgba(242,106,27,.28);

  /* neutrals (light) */
  --bg:        #FFFFFF;
  --bg-soft:   #F7F8FA;
  --surface:   #FFFFFF;
  --surface-2: #F9FAFB;
  --line:      #E6E8EC;
  --line-soft: #EEF0F3;
  --ink:       #0E1420;
  --ink-2:     #33405A;
  --muted:     #6B7688;

  /* effects */
  --shadow-sm: 0 1px 2px rgba(14,20,32,.05);
  --shadow-md: 0 6px 20px -8px rgba(14,20,32,.14);
  --shadow-lg: 0 24px 48px -24px rgba(14,20,32,.28);
  --ring:      0 0 0 4px var(--brand-ring);

  /* geometry */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 22px;
  --r-pill: 999px;

  --maxw: 1200px;
  --gap: 24px;

  /* type */
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-head: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

html[data-fexoya-theme="dark"] .fexoya-home-content {
  --bg:        #0B111C;
  --bg-soft:   #0F1725;
  --surface:   #121B2B;
  --surface-2: #162032;
  --line:      #223049;
  --line-soft: #1B2942;
  --ink:       #ECF1F8;
  --ink-2:     #C3CFE0;
  --muted:     #8C9BB1;

  --brand-soft: rgba(242,106,27,.12);
  --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
  --shadow-md: 0 8px 24px -10px rgba(0,0,0,.6);
  --shadow-lg: 0 28px 60px -28px rgba(0,0,0,.8);
}

/* ---------- 2. Base ---------- */
.fexoya-home-content *, .fexoya-home-content *::before, .fexoya-home-content *::after { box-sizing:border-box; }

.fexoya-home-content { scroll-behavior:smooth; scroll-padding-top:96px; }

.fexoya-home-content {
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:var(--font-body);
  font-size:.9375rem;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  transition:background-color .3s var(--ease), color .3s var(--ease);
}

.fexoya-home-content img { max-width:100%; display:block; }

.fexoya-home-content a { color:inherit; text-decoration:none; }

.fexoya-home-content h1, .fexoya-home-content h2, .fexoya-home-content h3, .fexoya-home-content h4 {
  font-family:var(--font-head);
  color:var(--ink);
  letter-spacing:-.022em;
  line-height:1.15;
  margin:0;
}

.fexoya-home-content h2 { font-size:1.25rem; font-weight:800; }
.fexoya-home-content h3 { font-size:1.0625rem; font-weight:700; }
.fexoya-home-content h4 { font-size:.9375rem; font-weight:700; }

.fexoya-home-content p { margin:0; }

.fexoya-home-content button { font:inherit; color:inherit; cursor:pointer; }

.fexoya-home-content input[type="search"]::-webkit-search-cancel-button, .fexoya-home-content input[type="search"]::-webkit-search-decoration { -webkit-appearance:none; appearance:none; }

.fexoya-home-content :focus-visible { outline:none; box-shadow:var(--ring); border-radius:var(--r-sm); }

.fexoya-home-content .sr-only {
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0;
}

.fexoya-home-content .skip-link {
  position:absolute; left:16px; top:-60px; z-index:200;
  background:var(--brand); color:#fff; padding:10px 16px; border-radius:var(--r-sm);
  transition:top .2s var(--ease);
}
.fexoya-home-content .skip-link:focus { top:16px; }

.fexoya-home-content .container { width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:24px; }
.fexoya-home-content .container-narrow { max-width:820px; }

.fexoya-home-content .icon { width:18px; height:18px; flex:none; }

.fexoya-home-content kbd {
  font-family:var(--font-body);
  font-size:.6875rem; font-weight:600;
  padding:2px 6px; border-radius:6px;
  background:var(--surface-2); color:var(--muted);
  border:1px solid var(--line);
}

/* ---------- 3. Buttons ---------- */
.fexoya-home-content .btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:11px 20px;
  border-radius:var(--r-md);
  border:1px solid transparent;
  font-weight:600; font-size:.9375rem;
  white-space:nowrap;
  transition:transform .18s var(--ease), background-color .18s var(--ease),
             box-shadow .18s var(--ease), border-color .18s var(--ease);
}
.fexoya-home-content .btn-sm { padding:9px 16px; font-size:.875rem; }
.fexoya-home-content .btn-lg { padding:15px 28px; font-size:1rem; border-radius:var(--r-lg); }

.fexoya-home-content .btn-primary {
  background:var(--brand); color:#fff;
  box-shadow:0 8px 20px -10px rgba(242,106,27,.9);
}
.fexoya-home-content .btn-primary:hover { background:var(--brand-strong); transform:translateY(-2px); }

.fexoya-home-content .btn-ghost {
  background:var(--surface); color:var(--ink);
  border-color:var(--line); box-shadow:var(--shadow-sm);
}
.fexoya-home-content .btn-ghost:hover { border-color:var(--brand); color:var(--brand); transform:translateY(-2px); }

/* ---------- 4. Header ---------- */
.fexoya-home-content .site-header {
  position:sticky; top:0; z-index:100;
  background:color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter:saturate(180%) blur(14px);
  -webkit-backdrop-filter:saturate(180%) blur(14px);
  border-bottom:1px solid transparent;
  transition:border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.fexoya-home-content .site-header.is-stuck { border-bottom-color:var(--line); box-shadow:0 1px 0 rgba(0,0,0,.02); }

.fexoya-home-content .header-inner {
  display:flex; align-items:center; gap:20px;
  height:68px;
}

.fexoya-home-content .brand { display:inline-flex; align-items:center; gap:10px; flex:none; }
.fexoya-home-content .brand-mark {
  width:36px; height:36px; border-radius:11px; flex:none;
  display:grid; place-items:center;
  background:linear-gradient(140deg, var(--brand), #FF9A4D);
  color:#fff;
  box-shadow:0 6px 16px -8px rgba(242,106,27,.9);
}
.fexoya-home-content .brand-mark svg { width:19px; height:19px; }
.fexoya-home-content .brand-name {
  font-family:var(--font-head); font-weight:800; font-size:1.3125rem;
  letter-spacing:-.03em; color:var(--ink);
}
.fexoya-home-content .brand-name .accent { color:var(--brand); }

.fexoya-home-content .main-nav { display:flex; align-items:center; gap:4px; margin-inline:auto; }
.fexoya-home-content .main-nav a {
  padding:8px 14px; border-radius:var(--r-md);
  font-size:.9375rem; font-weight:500; color:var(--ink-2);
  transition:background-color .18s var(--ease), color .18s var(--ease);
}
.fexoya-home-content .main-nav a:hover { background:var(--surface-2); color:var(--ink); }
.fexoya-home-content .main-nav a.is-active { background:var(--brand-soft); color:var(--brand-strong); font-weight:600; }
html[data-fexoya-theme="dark"] .fexoya-home-content .main-nav a.is-active { color:#FFB07A; }

.fexoya-home-content .header-actions { display:flex; align-items:center; gap:8px; flex:none; }

.fexoya-home-content .search-trigger {
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px 8px 12px;
  background:var(--surface-2); border:1px solid var(--line);
  border-radius:var(--r-md); color:var(--muted); font-size:.875rem;
  transition:border-color .18s var(--ease), color .18s var(--ease);
}
.fexoya-home-content .search-trigger:hover { border-color:var(--brand); color:var(--ink); }
.fexoya-home-content .search-trigger span { min-width:52px; text-align:left; }

.fexoya-home-content .icon-btn {
  width:38px; height:38px; display:grid; place-items:center;
  background:var(--surface-2); border:1px solid var(--line);
  border-radius:var(--r-md); color:var(--ink-2);
  transition:border-color .18s var(--ease), color .18s var(--ease), background-color .18s var(--ease);
}
.fexoya-home-content .icon-btn:hover { border-color:var(--brand); color:var(--brand); }

.fexoya-home-content .icon-sun { display:none; }
html[data-fexoya-theme="dark"] .fexoya-home-content .icon-moon { display:none; }
html[data-fexoya-theme="dark"] .fexoya-home-content .icon-sun { display:block; }

.fexoya-home-content .nav-toggle { display:none; }
.fexoya-home-content .icon-close { display:none; }
.fexoya-home-content .nav-open .nav-toggle .icon-burger { display:none; }
.fexoya-home-content .nav-open .nav-toggle .icon-close { display:block; }

/* ---------- 5. Hero ---------- */
.fexoya-home-content .hero { position:relative; overflow:hidden; padding:88px 0 64px; }

.fexoya-home-content .hero-grid {
  position:absolute; inset:0;
  background-image:
    linear-gradient(to right, var(--line-soft) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line-soft) 1px, transparent 1px);
  background-size:72px 72px;
  mask-image:radial-gradient(ellipse 78% 62% at 50% 34%, #000 30%, transparent 78%);
  -webkit-mask-image:radial-gradient(ellipse 78% 62% at 50% 34%, #000 30%, transparent 78%);
  opacity:.85;
}
.fexoya-home-content .hero-glow {
  position:absolute; left:50%; top:-160px; translate:-50% 0;
  width:900px; height:520px; border-radius:50%;
  background:radial-gradient(circle, rgba(242,106,27,.16), transparent 66%);
  filter:blur(20px); pointer-events:none;
}

.fexoya-home-content .hero-inner { position:relative; text-align:center; }

.fexoya-home-content .pill {
  display:inline-flex; align-items:center; gap:9px;
  padding:8px 18px 8px 14px; border-radius:var(--r-pill);
  background:var(--surface); border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
  font-size:.8125rem; font-weight:500; color:var(--ink-2);
}
.fexoya-home-content .pill .icon { width:15px; height:15px; color:var(--brand); }

.fexoya-home-content .hero-title {
  margin:26px auto 0;
  font-size:clamp(2.4rem, 1.1rem + 4.6vw, 4.15rem);
  font-weight:800; letter-spacing:-.038em; line-height:1.06;
  max-width:16ch;
}

.fexoya-home-content .underline-swash { position:relative; white-space:nowrap; }
.fexoya-home-content .underline-swash::after {
  content:""; position:absolute; left:-2%; right:-2%; bottom:.02em;
  height:.11em; border-radius:var(--r-pill);
  background:linear-gradient(90deg, var(--brand), #FFB020);
  opacity:.9;
}

.fexoya-home-content .hero-sub {
  margin:22px auto 0; max-width:60ch;
  font-size:clamp(1rem, .95rem + .35vw, 1.1875rem);
  color:var(--muted);
}

.fexoya-home-content .hero-search {
  position:relative; display:flex; align-items:center; gap:12px;
  max-width:660px; margin:34px auto 0;
  padding:16px 18px;
  background:var(--surface); border:1px solid var(--line);
  border-radius:var(--r-lg); box-shadow:var(--shadow-md);
  cursor:pointer;
  transition:border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
.fexoya-home-content .hero-search:hover { border-color:var(--brand); transform:translateY(-1px); }
.fexoya-home-content .hero-search .icon { width:21px; height:21px; color:var(--muted); }
.fexoya-home-content .hero-search input {
  flex:1; min-width:0; border:0; background:transparent; outline:none;
  font-size:1rem; color:var(--ink); cursor:pointer;
  text-overflow:ellipsis;
}
.fexoya-home-content .hero-search input::placeholder { color:var(--muted); }

.fexoya-home-content .hero-chips {
  display:flex; flex-wrap:wrap; align-items:center; justify-content:center;
  gap:8px; margin:20px auto 0;
}
.fexoya-home-content .chips-label { font-size:.875rem; color:var(--muted); margin-right:2px; }
.fexoya-home-content .chip {
  padding:6px 14px; border-radius:var(--r-pill);
  background:var(--surface); border:1px solid var(--line);
  font-size:.8125rem; font-weight:500; color:var(--ink-2);
  transition:border-color .18s var(--ease), color .18s var(--ease), background-color .18s var(--ease);
}
.fexoya-home-content .chip:hover { border-color:var(--brand); color:var(--brand); background:var(--brand-soft); }

.fexoya-home-content .hero-cta { display:flex; flex-wrap:wrap; gap:12px; justify-content:center; margin-top:32px; }

/* ---------- 6. Marquee ---------- */
.fexoya-home-content .marquee {
  overflow:hidden; padding:18px 0;
  border-block:1px solid var(--line);
  background:var(--bg-soft);
  mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.fexoya-home-content .marquee-track {
  display:flex; gap:10px; width:max-content;
  animation:fexoya-marquee 46s linear infinite;
}
.fexoya-home-content .marquee:hover .marquee-track { animation-play-state:paused; }
.fexoya-home-content .marquee-item {
  display:inline-flex; align-items:center; gap:8px;
  padding:7px 16px; border-radius:var(--r-pill);
  background:var(--surface); border:1px solid var(--line);
  font-size:.8125rem; color:var(--muted); white-space:nowrap;
}
.fexoya-home-content .marquee-item::before {
  content:""; width:6px; height:6px; border-radius:50%;
  background:var(--brand); opacity:.7; flex:none;
}
@keyframes fexoya-marquee{ to{ transform:translateX(-50%); } }

/* ---------- 7. Sections ---------- */
.fexoya-home-content .section { padding:80px 0; }
.fexoya-home-content .section-soft { background:var(--bg-soft); border-block:1px solid var(--line-soft); }

.fexoya-home-content .section-head { max-width:640px; margin-bottom:44px; }
.fexoya-home-content .section-head.with-link {
  display:flex; align-items:flex-end; justify-content:space-between; gap:24px;
  max-width:none;
}
.fexoya-home-content .section-head.with-link > div { max-width:640px; }

.fexoya-home-content .eyebrow {
  font-size:.6875rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  color:var(--brand); margin-bottom:12px;
}
.fexoya-home-content .section-sub { margin-top:14px; color:var(--muted); font-size:1.0625rem; }

.fexoya-home-content .link-arrow {
  display:inline-flex; align-items:center; gap:7px;
  font-size:.9375rem; font-weight:600; color:var(--brand);
  white-space:nowrap;
}
.fexoya-home-content .link-arrow .icon { transition:transform .2s var(--ease); }
.fexoya-home-content .link-arrow:hover .icon { transform:translateX(4px); }

/* ---------- 8. Stats ---------- */
.fexoya-home-content .stats-section { padding:64px 0; }
.fexoya-home-content .stats-grid {
  display:grid; grid-template-columns:repeat(4, 1fr); gap:var(--gap);
}
.fexoya-home-content .stat-card {
  padding:26px 24px; border-radius:var(--r-lg);
  background:var(--surface); border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.fexoya-home-content .stat-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:var(--brand); }
.fexoya-home-content .stat-icon {
  width:38px; height:38px; border-radius:11px; display:grid; place-items:center;
  background:var(--brand-soft); color:var(--brand); margin-bottom:16px;
}
.fexoya-home-content .stat-icon svg { width:19px; height:19px; }
.fexoya-home-content .stat-value {
  font-family:var(--font-head); font-size:2.125rem; font-weight:800;
  letter-spacing:-.03em; line-height:1;
}
.fexoya-home-content .stat-label { margin-top:8px; font-weight:600; font-size:.9375rem; }
.fexoya-home-content .stat-note { margin-top:3px; font-size:.8125rem; color:var(--muted); }

/* ---------- 9. Action cards ---------- */
.fexoya-home-content .action-grid { display:grid; grid-template-columns:repeat(4, 1fr); gap:var(--gap); }

.fexoya-home-content .action-card {
  display:flex; flex-direction:column;
  padding:30px 26px 26px; border-radius:var(--r-lg);
  background:var(--surface); border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.fexoya-home-content .action-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-lg); border-color:var(--brand); }
.fexoya-home-content .action-icon {
  width:48px; height:48px; border-radius:14px; display:grid; place-items:center;
  background:linear-gradient(140deg, var(--brand), #FF9A4D); color:#fff;
  margin-bottom:20px; box-shadow:0 10px 22px -12px rgba(242,106,27,.95);
}
.fexoya-home-content .action-icon svg { width:23px; height:23px; }
.fexoya-home-content .action-card h3 { font-size:1.125rem; }
.fexoya-home-content .action-card p { margin-top:10px; color:var(--muted); font-size:.9375rem; flex:1; }
.fexoya-home-content .action-link {
  display:inline-flex; align-items:center; gap:7px; margin-top:20px;
  font-size:.875rem; font-weight:600; color:var(--brand);
}
.fexoya-home-content .action-card:hover .action-link .icon { transform:translateX(4px); }
.fexoya-home-content .action-link .icon { transition:transform .2s var(--ease); }

/* ---------- 10. Fix cards ---------- */
.fexoya-home-content .card-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:var(--gap); }

.fexoya-home-content .fix-card {
  position:relative;
  padding:24px; border-radius:var(--r-lg);
  background:var(--surface); border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.fexoya-home-content .fix-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:var(--brand); }
.fexoya-home-content .fix-icon {
  width:40px; height:40px; border-radius:11px; display:grid; place-items:center;
  background:var(--brand-soft); color:var(--brand); margin-bottom:18px;
}
.fexoya-home-content .fix-icon svg { width:20px; height:20px; }
.fexoya-home-content .fix-card h3 { font-size:1.0625rem; padding-right:28px; }
.fexoya-home-content .fix-card p { margin-top:9px; color:var(--muted); font-size:.9375rem; }
.fexoya-home-content .tag {
  display:inline-block; margin-top:18px;
  padding:4px 11px; border-radius:var(--r-pill);
  background:var(--surface-2); border:1px solid var(--line);
  font-size:.75rem; font-weight:500; color:var(--muted);
}
.fexoya-home-content .fav {
  position:absolute; top:20px; right:20px;
  width:30px; height:30px; display:grid; place-items:center;
  background:transparent; border:0; border-radius:8px;
  color:var(--muted); opacity:.55;
  transition:color .18s var(--ease), opacity .18s var(--ease), background-color .18s var(--ease);
}
.fexoya-home-content .fav svg { width:17px; height:17px; }
.fexoya-home-content .fav:hover { color:var(--brand); opacity:1; background:var(--brand-soft); }
.fexoya-home-content .fav.is-on { color:var(--brand); opacity:1; }
.fexoya-home-content .fav.is-on svg { fill:currentColor; }

.fexoya-home-content .fix-arrow {
  position:absolute; right:22px; bottom:24px;
  width:16px; height:16px; color:var(--muted); opacity:0;
  transition:opacity .2s var(--ease), transform .2s var(--ease);
}
.fexoya-home-content .fix-card:hover .fix-arrow { opacity:1; transform:translate(2px,-2px); color:var(--brand); }

/* ---------- 11. Category cards ---------- */
.fexoya-home-content .cat-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:var(--gap); }

.fexoya-home-content .cat-card {
  display:flex; flex-direction:column;
  padding:26px; border-radius:var(--r-lg);
  background:var(--surface); border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.fexoya-home-content .cat-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:var(--brand); }
.fexoya-home-content .cat-top { display:flex; align-items:center; justify-content:space-between; margin-bottom:18px; }
.fexoya-home-content .cat-icon {
  width:42px; height:42px; border-radius:12px; display:grid; place-items:center;
  background:var(--brand-soft); color:var(--brand);
}
.fexoya-home-content .cat-icon svg { width:21px; height:21px; }
.fexoya-home-content .cat-count {
  padding:3px 11px; border-radius:var(--r-pill);
  background:var(--surface-2); border:1px solid var(--line);
  font-size:.75rem; font-weight:700; color:var(--muted);
}
.fexoya-home-content .cat-card h3 { font-size:1.0625rem; }
.fexoya-home-content .cat-card > p { margin-top:8px; color:var(--muted); font-size:.9375rem; }
.fexoya-home-content .cat-list {
  list-style:none; margin:18px 0 0; padding:0;
  display:flex; flex-wrap:wrap; gap:6px; flex:1; align-content:flex-start;
}
.fexoya-home-content .cat-list li {
  padding:4px 10px; border-radius:var(--r-pill);
  background:var(--surface-2); border:1px solid var(--line-soft);
  font-size:.75rem; color:var(--muted);
}
.fexoya-home-content .cat-link {
  margin-top:20px; font-size:.875rem; font-weight:600; color:var(--brand);
}

/* ---------- 12. Steps ---------- */
.fexoya-home-content .steps {
  list-style:none; margin:0; padding:0;
  display:grid; grid-template-columns:repeat(4, 1fr); gap:var(--gap);
  counter-reset:step;
}
.fexoya-home-content .step { position:relative; padding-top:22px; border-top:2px solid var(--line); }
.fexoya-home-content .step::before {
  content:""; position:absolute; top:-2px; left:0; width:34px; height:2px;
  background:var(--brand);
}
.fexoya-home-content .step-num {
  font-family:var(--font-head); font-size:.8125rem; font-weight:800;
  letter-spacing:.06em; color:var(--brand);
}
.fexoya-home-content .step h3 { margin-top:10px; font-size:1.0625rem; }
.fexoya-home-content .step p { margin-top:9px; color:var(--muted); font-size:.9375rem; }

/* ---------- 13. Guides ---------- */
.fexoya-home-content .guide-layout { display:grid; grid-template-columns:1.15fr 1fr; gap:var(--gap); }

.fexoya-home-content .guide-feature {
  display:flex; flex-direction:column;
  border-radius:var(--r-lg); overflow:hidden;
  background:var(--surface); border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.fexoya-home-content .guide-feature:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); border-color:var(--brand); }
.fexoya-home-content .guide-media {
  position:relative; aspect-ratio:16/8;
  background:
    radial-gradient(circle at 30% 30%, rgba(242,106,27,.28), transparent 58%),
    linear-gradient(140deg, #1B2436, #0E1420);
  display:grid; place-items:center;
}
.fexoya-home-content .play {
  width:60px; height:60px; border-radius:50%; display:grid; place-items:center;
  background:rgba(255,255,255,.94); color:var(--brand);
  box-shadow:0 12px 30px -12px rgba(0,0,0,.7);
  transition:transform .25s var(--ease);
}
.fexoya-home-content .play svg { width:24px; height:24px; margin-left:3px; }
.fexoya-home-content .guide-feature:hover .play { transform:scale(1.08); }
.fexoya-home-content .guide-body { padding:24px; }
.fexoya-home-content .guide-meta {
  font-size:.6875rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  color:var(--brand);
}
.fexoya-home-content .guide-body h3 { margin-top:12px; font-size:1.25rem; line-height:1.28; }
.fexoya-home-content .guide-body > p { margin-top:10px; color:var(--muted); font-size:.9375rem; }
.fexoya-home-content .guide-body .link-arrow { margin-top:18px; }

.fexoya-home-content .guide-list { display:flex; flex-direction:column; gap:12px; }
.fexoya-home-content .guide-row {
  padding:20px 22px; border-radius:var(--r-md);
  background:var(--surface); border:1px solid var(--line);
  box-shadow:var(--shadow-sm); flex:1;
  display:flex; flex-direction:column; justify-content:center;
  transition:border-color .2s var(--ease), transform .2s var(--ease);
}
.fexoya-home-content .guide-row:hover { border-color:var(--brand); transform:translateX(4px); }
.fexoya-home-content .guide-kicker {
  font-size:.6875rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  color:var(--muted);
}
.fexoya-home-content .guide-row h4 { margin-top:7px; font-size:1rem; line-height:1.35; }
.fexoya-home-content .guide-time { margin-top:6px; font-size:.8125rem; color:var(--muted); }

/* ---------- 14. Technicians ---------- */
.fexoya-home-content .tech-panel {
  display:grid; grid-template-columns:1.05fr .95fr; gap:48px; align-items:center;
  padding:48px; border-radius:var(--r-xl);
  background:var(--surface); border:1px solid var(--line);
  box-shadow:var(--shadow-md);
  position:relative; overflow:hidden;
}
.fexoya-home-content .tech-panel::before {
  content:""; position:absolute; right:-120px; top:-120px;
  width:420px; height:420px; border-radius:50%;
  background:radial-gradient(circle, rgba(242,106,27,.14), transparent 68%);
  pointer-events:none;
}
.fexoya-home-content .tech-copy > p { margin-top:14px; color:var(--muted); font-size:1.0625rem; }
.fexoya-home-content .tick-list { list-style:none; margin:22px 0 28px; padding:0; display:grid; gap:11px; }
.fexoya-home-content .tick-list li {
  position:relative; padding-left:30px; font-size:.9375rem; color:var(--ink-2);
}
.fexoya-home-content .tick-list li::before {
  content:""; position:absolute; left:0; top:.32em;
  width:19px; height:19px; border-radius:50%;
  background:var(--brand-soft);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F26A1B' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size:12px; background-position:center; background-repeat:no-repeat;
}

.fexoya-home-content .tech-card-stack { position:relative; display:grid; gap:14px; }
.fexoya-home-content .mini-card {
  padding:20px 22px; border-radius:var(--r-md);
  background:var(--surface-2); border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
}
.fexoya-home-content .mini-card-2 { margin-left:34px; border-color:var(--brand); }
.fexoya-home-content .mini-label {
  font-size:.6875rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  color:var(--brand);
}
.fexoya-home-content .mini-title { margin-top:8px; font-weight:700; font-size:.9375rem; font-family:var(--font-head); }
.fexoya-home-content .mini-note { margin-top:4px; font-size:.8125rem; color:var(--muted); }

/* ---------- 15. Features ---------- */
.fexoya-home-content .feature-grid { display:grid; grid-template-columns:repeat(4, 1fr); gap:var(--gap); }
.fexoya-home-content .feature {
  padding:26px; border-radius:var(--r-lg);
  background:var(--surface); border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
  transition:transform .25s var(--ease), border-color .25s var(--ease);
}
.fexoya-home-content .feature:hover { transform:translateY(-4px); border-color:var(--brand); }
.fexoya-home-content .feature-icon {
  width:40px; height:40px; border-radius:11px; display:grid; place-items:center;
  background:var(--brand-soft); color:var(--brand); margin-bottom:18px;
}
.fexoya-home-content .feature-icon svg { width:20px; height:20px; }
.fexoya-home-content .feature p { margin-top:9px; color:var(--muted); font-size:.9375rem; }

/* ---------- 16. FAQ ---------- */
.fexoya-home-content .faq { display:grid; gap:12px; }
.fexoya-home-content .faq-item {
  border-radius:var(--r-md); overflow:hidden;
  background:var(--surface); border:1px solid var(--line);
  transition:border-color .2s var(--ease);
}
.fexoya-home-content .faq-item.is-open { border-color:var(--brand); }
.fexoya-home-content .faq-q {
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:18px;
  padding:19px 22px; background:transparent; border:0; text-align:left;
  font-family:var(--font-head); font-weight:700; font-size:1rem; color:var(--ink);
}
.fexoya-home-content .faq-chevron { color:var(--muted); transition:transform .25s var(--ease), color .25s var(--ease); flex:none; }
.fexoya-home-content .faq-item.is-open .faq-chevron { transform:rotate(180deg); color:var(--brand); }
.fexoya-home-content .faq-a {
  max-height:0; overflow:hidden;
  transition:max-height .3s var(--ease);
}
.fexoya-home-content .faq-a p { padding:0 22px 20px; color:var(--muted); font-size:.9375rem; }

/* ---------- 17. Newsletter ---------- */
.fexoya-home-content .newsletter {
  display:grid; grid-template-columns:1.15fr .85fr; gap:40px; align-items:center;
  padding:44px 48px; border-radius:var(--r-xl);
  background:linear-gradient(140deg, #12192A, #0B111C);
  border:1px solid #223049;
  color:#fff; position:relative; overflow:hidden;
}
.fexoya-home-content .newsletter::after {
  content:""; position:absolute; left:-80px; bottom:-140px;
  width:420px; height:420px; border-radius:50%;
  background:radial-gradient(circle, rgba(242,106,27,.24), transparent 66%);
  pointer-events:none;
}
.fexoya-home-content .newsletter h2 { color:#fff; font-size:1.75rem; }
.fexoya-home-content .newsletter > div > p { margin-top:12px; color:#A9B6C9; font-size:.9375rem; max-width:46ch; }

.fexoya-home-content .newsletter-form { position:relative; display:flex; gap:10px; flex-wrap:wrap; }
.fexoya-home-content .newsletter-form input {
  flex:1; min-width:200px;
  padding:13px 16px; border-radius:var(--r-md);
  background:rgba(255,255,255,.07); border:1px solid #2C3B55;
  color:#fff; font-size:.9375rem; outline:none;
  transition:border-color .2s var(--ease);
}
.fexoya-home-content .newsletter-form input::placeholder { color:#7D8CA3; }
.fexoya-home-content .newsletter-form input:focus { border-color:var(--brand); }
.fexoya-home-content .form-msg {
  flex-basis:100%; min-height:18px; margin-top:2px;
  font-size:.8125rem; color:#FFB07A;
}

/* ---------- 18. Footer ---------- */
.fexoya-home-content .site-footer {
  padding:64px 0 32px;
  background:var(--bg-soft); border-top:1px solid var(--line);
}
.fexoya-home-content .footer-grid {
  display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:40px;
  padding-bottom:40px; border-bottom:1px solid var(--line);
}
.fexoya-home-content .footer-brand p { margin-top:16px; color:var(--muted); font-size:.9375rem; max-width:34ch; }
.fexoya-home-content .footer-col { display:flex; flex-direction:column; gap:11px; }
.fexoya-home-content .footer-col h4 { margin-bottom:5px; }
.fexoya-home-content .footer-col a { font-size:.9375rem; color:var(--muted); transition:color .18s var(--ease); }
.fexoya-home-content .footer-col a:hover { color:var(--brand); }
.fexoya-home-content .footer-bottom {
  display:flex; justify-content:space-between; align-items:center; gap:24px;
  padding-top:24px; font-size:.8125rem; color:var(--muted); flex-wrap:wrap;
}
.fexoya-home-content .footer-note { max-width:62ch; text-align:right; }

/* ---------- 19. Search modal ---------- */
.fexoya-home-content .search-modal { position:fixed; inset:0; z-index:200; }
.fexoya-home-content .search-modal[hidden] { display:none; }
.fexoya-home-content .search-backdrop {
  position:absolute; inset:0;
  background:rgba(10,14,22,.55); backdrop-filter:blur(4px);
  animation:fexoya-fade .2s var(--ease);
}
.fexoya-home-content .search-panel {
  position:relative; width:min(620px, calc(100% - 32px));
  margin:12vh auto 0;
  background:var(--surface); border:1px solid var(--line);
  border-radius:var(--r-lg); box-shadow:var(--shadow-lg);
  overflow:hidden;
  animation:fexoya-pop .22s var(--ease);
}
@keyframes fexoya-fade{ from{ opacity:0 } }
@keyframes fexoya-pop{ from{ opacity:0; transform:translateY(-10px) scale(.985) } }

.fexoya-home-content .search-field {
  display:flex; align-items:center; gap:12px;
  padding:16px 16px 16px 20px; border-bottom:1px solid var(--line);
}
.fexoya-home-content .search-field .icon { color:var(--muted); width:20px; height:20px; }
.fexoya-home-content .search-field input {
  flex:1; min-width:0; border:0; outline:none; background:transparent;
  font-size:1.0625rem; color:var(--ink);
}
.fexoya-home-content .search-field input::placeholder { color:var(--muted); }
.fexoya-home-content .search-field input:focus-visible { box-shadow:none; }

.fexoya-home-content .search-results { max-height:min(420px, 48vh); overflow-y:auto; padding:8px; }
.fexoya-home-content .search-group-label {
  padding:12px 12px 6px; font-size:.6875rem; font-weight:700;
  letter-spacing:.12em; text-transform:uppercase; color:var(--muted);
}
.fexoya-home-content .search-item {
  display:flex; align-items:center; gap:12px; width:100%;
  padding:11px 12px; border-radius:var(--r-sm);
  background:transparent; border:0; text-align:left;
  transition:background-color .15s var(--ease);
}
.fexoya-home-content .search-item:hover, .fexoya-home-content .search-item.is-active { background:var(--brand-soft); }
.fexoya-home-content .search-item .si-icon {
  width:32px; height:32px; border-radius:9px; flex:none;
  display:grid; place-items:center;
  background:var(--surface-2); color:var(--brand); font-size:.8125rem; font-weight:700;
}
.fexoya-home-content .search-item .si-title { font-weight:600; font-size:.9375rem; }
.fexoya-home-content .search-item .si-cat { font-size:.75rem; color:var(--muted); }
.fexoya-home-content .search-empty { padding:32px 16px; text-align:center; color:var(--muted); font-size:.9375rem; }

.fexoya-home-content .search-foot {
  display:flex; gap:18px; padding:11px 20px;
  border-top:1px solid var(--line); background:var(--surface-2);
  font-size:.75rem; color:var(--muted);
}
.fexoya-home-content .search-foot span { display:inline-flex; align-items:center; gap:5px; }

/* ---------- 20. Back to top ---------- */
.fexoya-home-content .to-top {
  position:fixed; right:22px; bottom:22px; z-index:90;
  width:44px; height:44px; display:grid; place-items:center;
  border-radius:50%; border:1px solid var(--line);
  background:var(--surface); color:var(--ink-2);
  box-shadow:var(--shadow-md);
  opacity:0; visibility:hidden; transform:translateY(10px);
  transition:opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.fexoya-home-content .to-top.is-visible { opacity:1; visibility:visible; transform:none; }
.fexoya-home-content .to-top:hover { color:var(--brand); border-color:var(--brand); }

/* ---------- 21. Scroll reveal ---------- */
.fexoya-home-content .reveal {
  opacity:0; transform:translateY(18px);
  transition:opacity .6s var(--ease), transform .6s var(--ease);
}
.fexoya-home-content .reveal.is-in { opacity:1; transform:none; }

/* ---------- 22. Responsive ---------- */
@media (max-width:1080px){
  .fexoya-home-content .stats-grid, .fexoya-home-content .action-grid, .fexoya-home-content .feature-grid, .fexoya-home-content .steps { grid-template-columns:repeat(2, 1fr); }
  .fexoya-home-content .card-grid, .fexoya-home-content .cat-grid { grid-template-columns:repeat(2, 1fr); }
  .fexoya-home-content .guide-layout { grid-template-columns:1fr; }
  .fexoya-home-content .footer-grid { grid-template-columns:1fr 1fr; gap:32px; }
  .fexoya-home-content .footer-note { text-align:left; }
}

@media (max-width:900px){
  .fexoya-home-content .main-nav {
    position:absolute; left:0; right:0; top:100%;
    flex-direction:column; align-items:stretch; gap:2px;
    padding:12px; margin:0;
    background:var(--bg); border-bottom:1px solid var(--line);
    box-shadow:var(--shadow-md);
    display:none;
  }
  .fexoya-home-content .nav-open .main-nav { display:flex; }
  .fexoya-home-content .main-nav a { padding:12px 14px; }
  .fexoya-home-content .nav-toggle { display:grid; }
  .fexoya-home-content .search-trigger span, .fexoya-home-content .search-trigger kbd { display:none; }
  .fexoya-home-content .search-trigger { width:38px; height:38px; padding:0; justify-content:center; }
  .fexoya-home-content .header-cta { display:none; }
  .fexoya-home-content .header-inner { position:relative; }
}

@media (max-width:720px){
  .fexoya-home-content .section { padding:60px 0; }
  .fexoya-home-content .hero { padding:56px 0 44px; }
  .fexoya-home-content .stats-grid, .fexoya-home-content .action-grid, .fexoya-home-content .card-grid, .fexoya-home-content .cat-grid, .fexoya-home-content .feature-grid, .fexoya-home-content .steps { grid-template-columns:1fr; }
  .fexoya-home-content .section-head.with-link { flex-direction:column; align-items:flex-start; gap:14px; }
  .fexoya-home-content .tech-panel { grid-template-columns:1fr; padding:32px 24px; gap:32px; }
  .fexoya-home-content .mini-card-2 { margin-left:0; }
  .fexoya-home-content .newsletter { grid-template-columns:1fr; padding:32px 24px; gap:26px; }
  .fexoya-home-content .footer-grid { grid-template-columns:1fr; }
  .fexoya-home-content .footer-bottom { flex-direction:column; align-items:flex-start; }
  .fexoya-home-content .hero-search { padding:14px 15px; }
  .fexoya-home-content .hero-search kbd { display:none; }
  .fexoya-home-content .search-panel { margin-top:8vh; }
}

/* ---------- 23. Motion / print ---------- */
@media (prefers-reduced-motion:reduce){
  .fexoya-home-content * { animation-duration:.01ms !important; animation-iteration-count:1 !important;
     transition-duration:.01ms !important; scroll-behavior:auto !important; }
  .fexoya-home-content .reveal { opacity:1; transform:none; }
}

@media print{
  .fexoya-home-content .site-header, .fexoya-home-content .to-top, .fexoya-home-content .search-modal, .fexoya-home-content .marquee, .fexoya-home-content .newsletter { display:none !important; }
  .fexoya-home-content .reveal { opacity:1; transform:none; }
  .fexoya-home-content { background:#fff; color:#000; }
}
