/* ============================================================
   CleanersHub — presentation site
   Palette taken from foodzilla.ro: deep teal ground, coral accent,
   mint + gold highlights. Glassmorphism on a warm dark base.
   ============================================================ */

:root {
  /* Foodzilla palette */
  --bg: #10353a;
  --surface: #184a50;
  --surface-2: #205e64;
  --surface-3: #28717a;
  --text: #e6f4f4;
  --muted: #9ac4c6;
  --muted-2: #6e9799;
  --accent: #ff8a5b;
  --accent-hover: #ff9e73;
  --accent-strong: #e5673a;
  --fresh: #74d6a2;
  --gold: #f0c357;

  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.22);
  --glass: rgba(255, 255, 255, 0.055);
  --glass-2: rgba(255, 255, 255, 0.09);

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.25);
  --shadow: 0 18px 50px -12px rgba(0, 0, 0, 0.55);
  --shadow-accent: 0 16px 40px -12px rgba(255, 138, 91, 0.5);

  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --container: 1180px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Ambient colour glows fixed behind everything */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 45% at 12% 8%, rgba(255, 138, 91, 0.16), transparent 60%),
    radial-gradient(50% 40% at 90% 12%, rgba(116, 214, 162, 0.13), transparent 60%),
    radial-gradient(55% 50% at 80% 92%, rgba(240, 195, 87, 0.10), transparent 60%),
    linear-gradient(180deg, #0d2c30 0%, var(--bg) 40%, #0e3035 100%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; }
h2.section-title { font-size: clamp(2rem, 4vw, 3rem); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fresh);
}
.lead { color: var(--muted); font-size: 1.15rem; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--fresh); box-shadow: 0 0 0 0 rgba(116, 214, 162, 0.6); animation: pulse 2.2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(116,214,162,0.55); } 70% { box-shadow: 0 0 0 8px rgba(116,214,162,0); } 100% { box-shadow: 0 0 0 0 rgba(116,214,162,0); } }
.hero-note { margin-top: 26px; color: var(--muted-2); font-size: 0.9rem; }
.text-accent { color: var(--accent); }
.text-gold { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px; border-radius: 999px;
  font-weight: 700; font-size: 0.98rem; cursor: pointer;
  border: 1px solid transparent; transition: all 0.22s var(--ease); white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--accent); color: #2a0f06; box-shadow: var(--shadow-accent); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-ghost { background: var(--glass); color: var(--text); border-color: var(--border-strong); backdrop-filter: blur(12px); }
.btn-ghost:hover { background: var(--glass-2); border-color: var(--fresh); }
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }

/* ---------- Glass ---------- */
.glass {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* ---------- Navbar ---------- */
.nav-wrap { position: fixed; top: 16px; left: 0; right: 0; z-index: 50; padding: 0 16px; }
.nav {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px 14px 12px 22px; border-radius: 999px;
  background: rgba(16, 53, 58, 0.6);
  border: 1px solid var(--border);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled { background: rgba(13, 42, 46, 0.85); box-shadow: var(--shadow-sm); }
.brand { display: inline-flex; align-items: center; }
.brand-badge {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; border-radius: 12px; padding: 8px 13px;
  box-shadow: 0 6px 18px -8px rgba(0, 0, 0, 0.5);
}
.brand-badge img { height: 26px; width: auto; display: block; }
.foot-brand .brand-badge img { height: 34px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--muted); font-weight: 600; font-size: 0.95rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-actions .link-login { color: var(--muted); font-weight: 700; font-size: 0.95rem; padding: 10px 8px; transition: color 0.2s; }
.nav-actions .link-login:hover { color: var(--text); }
.nav-toggle { display: none; background: var(--glass); border: 1px solid var(--border); border-radius: 12px; width: 42px; height: 42px; color: var(--text); cursor: pointer; }
.nav-toggle svg { width: 22px; height: 22px; margin: auto; }

/* ---------- Section rhythm ---------- */
section { padding: 96px 0; position: relative; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head .lead { margin-top: 16px; }

/* ---------- Hero ---------- */
.hero { padding: 168px 0 80px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.5rem, 5.4vw, 4rem); }
.hero h1 .grad {
  background: linear-gradient(120deg, var(--accent), var(--gold) 60%, var(--fresh));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead { margin: 22px 0 32px; max-width: 540px; font-size: 1.2rem; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { margin-top: 30px; display: flex; align-items: center; gap: 14px; color: var(--muted-2); font-size: 0.9rem; }
.avatars { display: flex; }
.avatars span {
  width: 34px; height: 34px; border-radius: 50%; margin-left: -10px; border: 2px solid var(--bg);
  display: grid; place-items: center; font-size: 0.75rem; font-weight: 800; color: #2a0f06;
}
.avatars span:first-child { margin-left: 0; }
.stars { color: var(--gold); letter-spacing: 2px; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-photo { border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border-strong); box-shadow: var(--shadow); }
.hero-photo img { width: 100%; height: 480px; object-fit: cover; }
.float-card {
  position: absolute; padding: 16px 18px; border-radius: var(--radius);
  background: rgba(16, 53, 58, 0.78); border: 1px solid var(--border-strong);
  backdrop-filter: blur(14px); box-shadow: var(--shadow); animation: float 6s ease-in-out infinite;
}
.float-card .fc-row { display: flex; align-items: center; gap: 12px; }
.fc-ico { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; }
.fc-ico svg { width: 20px; height: 20px; }
.fc-title { font-weight: 700; font-size: 0.92rem; }
.fc-sub { color: var(--muted); font-size: 0.78rem; }
.float-1 { top: 26px; left: -34px; }
.float-2 { bottom: 30px; right: -30px; animation-delay: -3s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ---------- Logo / trust strip ---------- */
.trust-strip { padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.trust-strip p { color: var(--muted-2); font-size: 0.9rem; font-weight: 600; }
.trust-logos { display: flex; gap: 34px; align-items: center; flex-wrap: wrap; color: var(--muted); font-weight: 800; font-size: 1.05rem; opacity: 0.8; }

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { padding: 30px 26px; text-align: center; }
.stat .num { font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800; background: linear-gradient(120deg, var(--fresh), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lbl { color: var(--muted); font-size: 0.92rem; margin-top: 6px; }

/* ---------- Features ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature { padding: 30px; transition: transform 0.3s var(--ease), border-color 0.3s; }
.feature:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.feature .f-ico { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 18px; }
.feature .f-ico svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.22rem; margin-bottom: 9px; }
.feature p { color: var(--muted); font-size: 0.98rem; }
.i-coral { background: rgba(255, 138, 91, 0.16); color: var(--accent); }
.i-fresh { background: rgba(116, 214, 162, 0.16); color: var(--fresh); }
.i-gold { background: rgba(240, 195, 87, 0.16); color: var(--gold); }
.i-sky { background: rgba(154, 196, 198, 0.16); color: #b6e0e2; }

/* ---------- Split feature rows ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border-strong); box-shadow: var(--shadow); }
.split-media img { width: 100%; height: 420px; object-fit: cover; }
.split h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 18px; }
.split ul { list-style: none; margin-top: 22px; display: grid; gap: 14px; }
.split li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); }
.check { width: 24px; height: 24px; border-radius: 50%; background: rgba(116, 214, 162, 0.18); color: var(--fresh); display: grid; place-items: center; flex-shrink: 0; margin-top: 2px; }
.check svg { width: 14px; height: 14px; }
.split li strong { color: var(--text); font-weight: 700; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { padding: 34px 28px; position: relative; }
.step .snum { font-size: 0.85rem; font-weight: 800; color: var(--accent); letter-spacing: 0.1em; }
.step h3 { font-size: 1.28rem; margin: 14px 0 10px; }
.step p { color: var(--muted); font-size: 0.98rem; }
.step .sline { position: absolute; top: 46px; right: -12px; color: var(--muted-2); opacity: 0.4; }

/* ---------- Testimonials ---------- */
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tcard { padding: 30px; display: flex; flex-direction: column; gap: 18px; }
.tcard .quote { font-size: 1.05rem; color: var(--text); line-height: 1.6; }
.tcard .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tcard .who .av { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: #2a0f06; flex-shrink: 0; }
.tcard .who .nm { font-weight: 700; font-size: 0.95rem; }
.tcard .who .rl { color: var(--muted-2); font-size: 0.82rem; }

/* ---------- Pricing ---------- */
.pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan { padding: 34px 30px; display: flex; flex-direction: column; }
.plan.featured { border-color: var(--accent); box-shadow: var(--shadow-accent); position: relative; }
.plan .badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #2a0f06; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; }
.plan h3 { font-size: 1.15rem; }
.plan .price { margin: 16px 0 4px; font-size: 2.6rem; font-weight: 800; }
.plan .price span { font-size: 1rem; font-weight: 600; color: var(--muted); }
.plan .pdesc { color: var(--muted); font-size: 0.9rem; margin-bottom: 22px; }
.plan ul { list-style: none; display: grid; gap: 12px; margin-bottom: 26px; }
.plan li { display: flex; gap: 10px; color: var(--muted); font-size: 0.94rem; }
.plan li svg { width: 18px; height: 18px; color: var(--fresh); flex-shrink: 0; margin-top: 3px; }
.plan .btn { margin-top: auto; width: 100%; }

/* ---------- Final CTA ---------- */
.cta-band { padding: 70px 56px; text-align: center; border-radius: var(--radius-xl); position: relative; overflow: hidden; border: 1px solid var(--border-strong); }
.cta-band::before { content: ''; position: absolute; inset: 0; z-index: -1; background: radial-gradient(60% 120% at 20% 0%, rgba(255,138,91,0.28), transparent 60%), radial-gradient(60% 120% at 90% 100%, rgba(116,214,162,0.22), transparent 60%), rgba(16,53,58,0.7); }
.cta-band h2 { font-size: clamp(2rem, 4vw, 3rem); }
.cta-band p { color: var(--muted); max-width: 520px; margin: 16px auto 30px; font-size: 1.15rem; }
.cta-band .hero-cta { justify-content: center; }

/* ---------- Footer ---------- */
footer { padding: 70px 0 36px; border-top: 1px solid var(--border); margin-top: 40px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.foot-brand p { color: var(--muted); font-size: 0.94rem; margin: 16px 0 20px; max-width: 300px; }
.foot-col h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-2); margin-bottom: 16px; }
.foot-col a { display: block; color: var(--muted); font-size: 0.94rem; padding: 6px 0; transition: color 0.2s; }
.foot-col a:hover { color: var(--accent); }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px; border-top: 1px solid var(--border); color: var(--muted-2); font-size: 0.86rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .split, .split.reverse .split-media { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .hero-visual { margin-top: 20px; }
  .feature-grid, .steps, .tgrid, .pgrid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .step .sline { display: none; }
  .nav-links, .nav-actions .link-login { display: none; }
  .nav-toggle { display: grid; }
  .mobile-open .nav-links { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: rgba(13,42,46,0.97); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; gap: 8px; }
  .mobile-open .nav-links a { padding: 10px 6px; }
}
@media (max-width: 560px) {
  section { padding: 68px 0; }
  .hero { padding: 140px 0 60px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 48px 24px; }
  .float-1 { left: 6px; } .float-2 { right: 6px; }
}
