/* MANEVUM — brand: navy #1F3864 / green #6AA23A */
:root {
  --navy: #1F3864;
  --navy-dark: #16294a;
  --blue: #2E5AA8;
  --green: #6AA23A;
  --green-dark: #578630;
  --bg: #f7f9fc;
  --ink: #22293a;
  --muted: #5b6478;
  --card: #ffffff;
  --line: #e3e8f2;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Segoe UI', system-ui, -apple-system, Arial, sans-serif; color: var(--ink); background: var(--bg); line-height: 1.6; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
a { color: var(--blue); text-decoration: none; }

/* Beta */
.beta-bar { background: #f4a218; color: #2b1d00; font-size: 13.5px; font-weight: 700; padding: 7px 0; text-align: center; }
.beta-pill { display: inline-block; background: #f4a218; color: #2b1d00; font-size: 11px; font-weight: 800; letter-spacing: 1px; padding: 3px 9px; border-radius: 20px; vertical-align: middle; margin-left: 8px; }
.navy2 { color: #ffffff; }

/* Header */
.site-header { background: #fff; border-bottom: 3px solid var(--navy); position: sticky; top: 0; z-index: 50; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; gap: 16px; flex-wrap: wrap; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { height: 56px; width: auto; display: block; }
.navy { color: var(--navy); } .green { color: var(--green); }
.main-nav { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.main-nav a { color: var(--navy); font-weight: 600; font-size: 15px; }
.main-nav a.active { border-bottom: 2px solid var(--green); }
.main-nav a.cta { background: var(--green); color: #fff; padding: 8px 16px; border-radius: 6px; }
.main-nav a.cta:hover { background: var(--green-dark); }
.main-nav a.admin-link { color: var(--muted); font-size: 13px; }
.lang-switch { display: inline-flex; gap: 4px; border: 1px solid var(--line); border-radius: 20px; padding: 3px 6px; }
.lang-switch a { font-size: 12.5px; font-weight: 700; color: var(--muted); padding: 2px 7px; border-radius: 14px; }
.lang-switch a.lang-active { background: var(--navy); color: #fff; }

/* Hero */
.hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 70%); color: #fff; padding: 72px 0 64px; }
.hero-banner { position: relative; overflow: hidden; padding: 0; }
.hero-banner .hero-content { position: relative; z-index: 2; padding-top: 76px; padding-bottom: 70px; max-width: 1080px; }
.hero-banner h1 { max-width: 560px; }
.hero-banner p.lead { max-width: 540px; }
.hero-photo { position: absolute; top: 0; right: 0; bottom: 0; width: 56%; background: url('/assets/hero-photo.jpg') center right / cover no-repeat; z-index: 1; }
.hero-photo::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--navy-dark) 0%, rgba(22,41,74,.55) 22%, rgba(22,41,74,0) 55%); }
.hero-strip { position: relative; z-index: 2; background: rgba(13, 24, 44, .92); border-top: 1px solid rgba(255,255,255,.08); }
.strip-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; padding: 20px; }
.strip-item { display: flex; align-items: center; gap: 14px; color: #cfd9ec; }
.strip-icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border: 2px solid var(--green); border-radius: 50%; font-size: 24px; flex-shrink: 0; }
.strip-item strong { display: block; color: #fff; font-size: 16px; }
.strip-item span:not(.strip-icon) { font-size: 14px; }
.hero h1 { font-size: 40px; line-height: 1.15; max-width: 720px; }
.hero h1 em { color: #9fce6e; font-style: normal; }
.hero p.lead { margin: 18px 0 28px; font-size: 19px; color: #cfd9ec; max-width: 640px; }
.btn { display: inline-block; padding: 13px 26px; border-radius: 8px; font-weight: 700; font-size: 16px; }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); }
.btn-outline { border: 2px solid #cfd9ec; color: #fff; margin-left: 12px; }
.hero .phone { margin-top: 22px; font-size: 15px; color: #9fb2d4; }
.hero .phone strong { color: #fff; font-size: 18px; }

/* Sections */
section.block { padding: 56px 0; }
section.alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
h2.sec { font-size: 30px; color: var(--navy); margin-bottom: 8px; }
p.sub { color: var(--muted); margin-bottom: 30px; max-width: 700px; }
.grid3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 24px; box-shadow: 0 1px 3px rgba(31,56,100,.06); }
.card h3 { color: var(--navy); font-size: 19px; margin-bottom: 8px; }
.card p { font-size: 15px; color: var(--muted); }
.card .tag { display: inline-block; background: #eef4e6; color: var(--green-dark); font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .5px; }

/* Steps */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 18px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 22px; position: relative; }
.step::before { counter-increment: step; content: counter(step); display: inline-flex; width: 34px; height: 34px; align-items: center; justify-content: center; background: var(--navy); color: #fff; border-radius: 50%; font-weight: 800; margin-bottom: 10px; }
.step h4 { color: var(--navy); margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--muted); }

/* Pricing */
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.plan { background: #fff; border: 2px solid var(--line); border-radius: 14px; padding: 26px; display: flex; flex-direction: column; }
.plan.featured { border-color: var(--green); box-shadow: 0 6px 18px rgba(106,162,58,.18); }
.plan h3 { color: var(--navy); }
.plan .price { font-size: 34px; font-weight: 800; color: var(--navy); margin: 8px 0 2px; }
.plan .per { color: var(--muted); font-size: 13px; margin-bottom: 14px; }
.plan ul { list-style: none; margin: 0 0 18px; flex: 1; }
.plan ul li { padding: 6px 0 6px 26px; position: relative; font-size: 14.5px; color: var(--ink); }
.plan ul li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.plan .btn { text-align: center; }

/* Tables */
table.data { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
table.data th { background: var(--navy); color: #fff; text-align: left; padding: 10px 14px; font-size: 14px; }
table.data td { padding: 10px 14px; border-top: 1px solid var(--line); font-size: 14.5px; }
table.data tr:nth-child(even) td { background: #f4f7fc; }

/* Forms */
form.std { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 30px; max-width: 720px; }
form.std label { display: block; font-weight: 700; color: var(--navy); font-size: 14px; margin: 16px 0 4px; }
form.std input, form.std select, form.std textarea { width: 100%; padding: 11px 12px; border: 1px solid #c6cfdf; border-radius: 8px; font-size: 15px; font-family: inherit; }
form.std input:focus, form.std select:focus, form.std textarea:focus { outline: 2px solid var(--green); border-color: var(--green); }
form.std .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
form.std button { margin-top: 22px; }
.notice { padding: 14px 18px; border-radius: 10px; margin-bottom: 22px; font-weight: 600; }
.notice.ok { background: #eef7e4; color: #35641a; border: 1px solid #bcdb9a; }
.notice.err { background: #fdecec; color: #8f1f1f; border: 1px solid #f0b9b9; }

/* Badges */
.badge { display: inline-block; padding: 2px 10px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.b-P1 { background: #fdecec; color: #a52222; }
.b-P2 { background: #fef4e2; color: #8a5a00; }
.b-P3 { background: #e8eef8; color: var(--navy); }
.b-status { background: #eef4e6; color: var(--green-dark); }

/* Admin */
.admin-bar { background: var(--navy); color: #fff; padding: 10px 0; }
.admin-bar .wrap { display: flex; justify-content: space-between; align-items: center; }
.admin-bar a { color: #cfd9ec; margin-left: 18px; font-size: 14.5px; font-weight: 600; }
.admin-bar a:hover { color: #fff; }
.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin: 26px 0; }
.stat { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--green); border-radius: 10px; padding: 16px 18px; }
.stat .n { font-size: 30px; font-weight: 800; color: var(--navy); }
.stat .l { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }
.panel { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 22px; margin-bottom: 24px; }
.panel h3 { color: var(--navy); margin-bottom: 12px; border-bottom: 2px solid var(--line); padding-bottom: 8px; }

/* Footer */
.site-footer { background: var(--navy-dark); color: #b9c6de; margin-top: 60px; padding: 44px 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; padding-bottom: 30px; }
.footer-brand { font-size: 26px; font-weight: 800; letter-spacing: 1px; margin-bottom: 8px; }
.site-footer h4 { color: #fff; margin-bottom: 8px; }
.site-footer p { font-size: 14px; }
.site-footer .big { font-size: 20px; font-weight: 800; color: #fff; }
.footer-legal { border-top: 1px solid #2a3d61; padding: 16px 20px; }
.footer-legal p { font-size: 12.5px; color: #8496b6; }

@media (max-width: 640px) {
  .hero h1 { font-size: 30px; }
  form.std .row { grid-template-columns: 1fr; }
  .btn-outline { margin-left: 0; margin-top: 10px; }
}
