:root {
  --bg: #FAF8F3;
  --ink: #12201A;
  --green: #4C7A5B;
  --green-dark: #3E6B4C;
  --green-pale: #E3EDDF;
  --blue: #2E90D9;
  --blue-pale: #E3F0FB;
  --amber: #D98F2E;
  --amber-pale: #FBF0DE;
  --line: rgba(18, 32, 26, 0.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
}

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--ink); }
button { font-family: 'Sora', sans-serif; cursor: pointer; }
::selection { background: #CFE3D6; }

.serif-accent {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--green);
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-16px, 20px) scale(1.05); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.dot-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(18,32,26,0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  z-index: 0;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 64px;
  background: rgba(250, 248, 243, 0.8);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav__logo { height: 24px; cursor: pointer; margin-right: 20px; }

.nav__brand { display: flex; align-items: center; gap: 16px; }

.audience-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(18, 32, 26, 0.06);
  border-radius: 999px;
  padding: 3px;
}
.audience-switch a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  color: rgba(18, 32, 26, 0.45);
  white-space: nowrap;
}
.audience-switch a:hover { color: var(--ink); }
.audience-switch a.is-active { background: var(--ink); color: #fff; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav__link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9AA39B;
}

.nav__link.is-active,
.nav__link:hover { color: var(--ink); }

.nav__menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 8px;
}
.nav__menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

.btn {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-block;
}
.btn--dark { background: var(--ink); color: var(--bg); }
.btn--dark:hover { color: var(--bg); }
.btn--outline { background: transparent; color: var(--ink); border: 1px solid rgba(18,32,26,0.2); }
.btn--outline:hover { color: var(--ink); }
.btn--light { background: var(--bg); color: var(--ink); }
.btn--light:hover { color: var(--ink); }
.btn--green { background: var(--green); color: #fff; }
.btn--green:hover { color: #fff; }
.btn--lg { font-size: 15px; padding: 16px 28px; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 64px 130px;
}

.hero__orb {
  position: absolute;
  top: -220px;
  right: -160px;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76,122,91,0.28) 0%, rgba(76,122,91,0.08) 45%, transparent 70%);
  filter: blur(10px);
  animation: floatOrb 14s ease-in-out infinite;
  z-index: 0;
}

.hero__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
  z-index: 1;
}

.hero__copy { flex: 1 1 420px; min-width: 0; animation: fadeUp 0.8s ease-out both; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 30px;
}
.eyebrow__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

.hero__title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(38px, 5.4vw, 70px);
  line-height: 1.04;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 28px;
  letter-spacing: -0.02em;
}
.hero__title .serif-accent { font-size: 1.15em; }

.hero__desc {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(18, 32, 26, 0.65);
  margin: 0 0 40px;
  max-width: 460px;
}

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__phone-wrap {
  flex: 0 0 452px;
  position: relative;
  margin: 0 auto;
  animation: fadeUp 0.9s ease-out 0.15s both;
}

.hero__phone {
  position: relative;
  width: 350px;
  height: 695px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 40px;
  padding: 13px;
  border: 1px solid rgba(18,32,26,0.1);
  box-shadow: 0 50px 100px rgba(18,32,26,0.28), 0 0 80px rgba(76,122,91,0.15);
  overflow: hidden;
}
.hero__phone img { width: 100%; height: 100%; object-fit: cover; border-radius: 26px; display: block; }

.hero__badge {
  position: absolute;
  bottom: 44px;
  right: -44px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 21px 23px;
  box-shadow: 0 20px 50px rgba(18,32,26,0.12);
  max-width: 256px;
}
.hero__badge-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.hero__badge-text { font-size: 13px; color: var(--ink); font-weight: 600; }

/* Pro hero: browser mockup */
.hero__browser-wrap { flex: 1 1 480px; min-width: 0; animation: fadeUp 0.9s ease-out 0.15s both; }
.browser-mock {
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 50px 100px rgba(18,32,26,0.2), 0 0 80px rgba(76,122,91,0.1);
  overflow: hidden;
}
.browser-mock__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}
.browser-mock__dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(18,32,26,0.15); }
.browser-mock__body { padding: 22px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.browser-mock__stat {
  background: var(--bg);
  border-radius: 12px;
  padding: 16px;
}
.browser-mock__stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(18,32,26,0.45);
  margin-bottom: 6px;
}
.browser-mock__stat-value { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 24px; }
.browser-mock__caption {
  text-align: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: rgba(18,32,26,0.35);
  margin-top: 14px;
}

/* Section shared */
.section { position: relative; padding: 0 64px 130px; max-width: 1300px; margin: 0 auto; z-index: 1; }
.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
  gap: 24px 40px;
}
.section-head h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.01em;
  max-width: 520px;
}
.section-head a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--green);
  padding-bottom: 3px;
  white-space: nowrap;
}

/* Bento grid */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 170px;
  grid-auto-flow: dense;
  gap: 16px;
}
.bento__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 1px 2px rgba(18,32,26,0.03);
}
.bento__card:hover { transform: translateY(-4px); box-shadow: 0 18px 34px rgba(18,32,26,0.09); }
.bento__icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.bento__icon-dot { width: 12px; height: 12px; border-radius: 50%; }
.bento__title { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.bento__desc { font-size: 14px; line-height: 1.55; color: rgba(18,32,26,0.6); }

/* CTA band */
.cta-band { position: relative; background: var(--ink); padding: 90px 64px; z-index: 1; }
.cta-band__inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-band h2 { font-family: 'Sora', sans-serif; color: var(--bg); font-size: 32px; font-weight: 800; margin: 0 0 12px; letter-spacing: -0.01em; }
.cta-band p { color: rgba(250,248,243,0.6); font-size: 16px; margin: 0; }
.cta-band__actions { display: flex; gap: 12px; flex-shrink: 0; }

/* Page header (features / tarifs / contact) */
.page-head { padding: 100px 64px 30px; max-width: 1300px; margin: 0 auto; }
.page-head.centered { max-width: 1000px; text-align: center; }
.page-head h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
  max-width: 640px;
}
.page-head.centered h1 { margin-left: auto; margin-right: auto; }
.page-head p { font-size: 17px; color: rgba(18,32,26,0.6); margin: 0; max-width: 560px; }
.page-head.centered p { margin-left: auto; margin-right: auto; }

/* Features rows */
.feat-rows { padding: 50px 64px 120px; max-width: 1300px; margin: 0 auto; display: flex; flex-direction: column; }
.feat-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 36px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
}
.feat-row.reverse { flex-direction: row-reverse; }
.feat-row__copy { flex: 1 1 320px; min-width: 0; }
.feat-row__icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.feat-row__icon-dot { width: 13px; height: 13px; border-radius: 50%; }
.feat-row__title { font-family: 'Sora', sans-serif; font-size: 24px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.01em; }
.feat-row__desc { font-size: 15.5px; line-height: 1.7; color: rgba(18,32,26,0.6); max-width: 460px; }
.feat-row__media {
  flex: 0 0 280px;
  height: 190px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, var(--green-pale), #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: rgba(18,32,26,0.35);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.feat-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

/* Pricing */
.pricing-grid {
  padding: 50px 64px 120px;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  align-items: stretch;
}
.price-card {
  border-radius: 20px;
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
}
.price-card__tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.price-card__table { display: grid; grid-template-columns: 1fr 56px 56px; gap: 0; align-items: center; }
.price-card__col-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
}
.price-card__row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 56px 56px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.price-card__row-label { font-size: 13.5px; padding-right: 8px; }
.price-card__row-mark { text-align: center; font-size: 14px; }
.price-card__list {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.price-card__list li {
  font-size: 14px;
  line-height: 1.5;
  color: #3A473F;
  padding-left: 22px;
  position: relative;
}
.price-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #4C7A5B;
  font-weight: 700;
}
.price-card__price { margin: 26px 0 20px; font-size: 13px; }
.price-card__cta { font-weight: 700; font-size: 14.5px; padding: 14px; border-radius: 999px; margin-top: auto; }

/* Contact */
.contact-section {
  padding: 100px 64px 120px;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 50px 70px;
}
.contact-info { flex: 1 1 360px; min-width: 0; }
.contact-info h1 { font-family: 'Sora', sans-serif; font-size: clamp(30px, 4vw, 42px); font-weight: 800; margin: 0 0 18px; letter-spacing: -0.01em; }
.contact-info > p { font-size: 16px; line-height: 1.7; color: rgba(18,32,26,0.6); margin: 0 0 40px; max-width: 400px; }
.contact-info__list { display: flex; flex-direction: column; gap: 22px; }
.contact-info__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: rgba(18,32,26,0.4);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.contact-info__value { font-size: 15px; color: var(--ink); }
.contact-info__linkedin { display: inline-flex; align-items: center; gap: 8px; }
.contact-info__linkedin img { height: 20px; width: auto; }

.contact-form {
  flex: 1 1 360px;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px;
  box-sizing: border-box;
  box-shadow: 0 1px 2px rgba(18,32,26,0.03);
}
.contact-form__fields { display: flex; flex-direction: column; gap: 18px; }
.contact-form label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid rgba(18,32,26,0.15);
  font-size: 14.5px;
  font-family: 'Manrope', sans-serif;
  background: #fff;
  color: var(--ink);
}
.contact-form textarea { resize: vertical; }
.contact-form button { margin-top: 6px; }
.form-status { font-size: 13.5px; margin-top: 10px; }
.form-status.ok { color: var(--green-dark); }
.form-status.err { color: #b5442e; }

/* Legal pages */
.legal-body {
  padding: 0 64px 120px;
  max-width: 760px;
  margin: 0 auto;
}
.legal-meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: rgba(18,32,26,0.4);
  margin-bottom: 36px;
}
.legal-body h2 {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 40px 0 12px;
  letter-spacing: -0.01em;
}
.legal-body p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(18,32,26,0.72);
  margin: 0 0 12px;
}
.legal-body ul {
  margin: 0 0 12px;
  padding-left: 20px;
}
.legal-body li {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(18,32,26,0.72);
  margin-bottom: 6px;
}
.legal-body a { color: var(--green); }
.legal-body a:hover { color: var(--ink); }

.footer__legal {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: rgba(18,32,26,0.5);
}
.footer__legal a { color: rgba(18,32,26,0.5); }
.footer__legal a:hover { color: var(--ink); }

/* Footer */
.footer { position: relative; z-index: 1; border-top: 1px solid var(--line); padding: 56px 64px; }
.footer__inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer__logo { height: 22px; }
.footer__links { display: flex; gap: 30px; flex-wrap: wrap; }
.footer__links a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(18,32,26,0.5);
}

@media (max-width: 860px) {
  .nav { padding: 16px 20px; }
  .nav__brand { gap: 10px; }
  .audience-switch a { padding: 5px 9px; font-size: 10px; }
  .nav__links { position: fixed; top: 64px; left: 0; right: 0; background: var(--bg); flex-direction: column; align-items: flex-start; gap: 0; padding: 8px 20px 20px; border-bottom: 1px solid var(--line); display: none; }
  .nav__links.is-open { display: flex; }
  .nav__link { padding: 12px 0; width: 100%; }
  .nav__menu-btn { display: block; }
  .nav__cta { display: none; }
  .hero, .section, .page-head, .feat-rows, .pricing-grid, .contact-section, .cta-band, .footer { padding-left: 20px; padding-right: 20px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__card[style*="span 2"] { grid-column: span 2; }
}
