/* ============================================================
   Ravine Software — 2026 homepage preview  (v2: brand palette)
   Namespace: .rvn  |  No JavaScript. CSS-only interactions.
   Brand: gecko green #95C93D, blue #006292
   ============================================================ */

.rvn {
  --ink: #131711;
  --ink-2: #1c2119;
  --paper: #f7f8f3;
  --paper-2: #eef1e6;
  --line: #dfe3d3;
  --line-dark: rgba(247, 248, 243, 0.14);
  --green: #95c93d;
  --green-deep: #6d9b22;
  --blue: #006292;
  --blue-deep: #084b6d;
  --muted: #5d645a;
  --muted-dark: #a2ab9b;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, "Segoe UI", sans-serif;
  --wrap: 1180px;
  --r: 14px;

  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
.rvn *, .rvn *::before, .rvn *::after { box-sizing: border-box; margin: 0; padding: 0; }
.rvn img { max-width: 100%; display: block; }
.rvn a { color: inherit; text-decoration: none; }

.rvn .rvn-wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

/* ---------- type ---------- */
/* Hard reset: the Bridge theme + Elementor kit force black heading colors
   and uppercase transforms that break this design on dark backgrounds. */
.rvn h1, .rvn h2, .rvn h3, .rvn h4, .rvn h5, .rvn h6 {
  color: inherit !important;
  text-transform: none !important;
}
.rvn h1, .rvn h2 {
  letter-spacing: -0.015em !important;
  line-height: 1.06 !important;
}
.rvn blockquote {
  border: none !important;
  background: none !important;
  margin: 0;
  padding: 0;
  quotes: none;
}
.rvn h1, .rvn h2, .rvn .rvn-display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.015em;
}
.rvn .rvn-kicker {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.rvn .rvn-kicker::before {
  content: "";
  width: 34px; height: 2px;
  background: var(--green);
  flex: none;
}

/* ---------- buttons ---------- */
.rvn .rvn-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15.5px;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.rvn .rvn-btn::after { content: "→"; font-weight: 400; transition: transform 0.18s ease; }
.rvn .rvn-btn:hover { transform: translateY(-1px); }
.rvn .rvn-btn:hover::after { transform: translateX(3px); }
.rvn .rvn-btn--solid { background: var(--ink); color: var(--paper); }
.rvn .rvn-btn--solid:hover { background: var(--blue-deep); }
.rvn .rvn-btn--green { background: var(--green); color: var(--ink); }
.rvn .rvn-btn--green:hover { background: #a5d94f; }
.rvn .rvn-btn--paper { background: var(--paper); color: var(--ink); }
.rvn .rvn-btn--paper:hover { background: #fff; }
.rvn .rvn-btn--ghost { border-color: var(--line-dark); color: var(--paper); }
.rvn .rvn-btn--ghost:hover { border-color: var(--green); color: var(--green); }
.rvn .rvn-btn--ghost2 { border-color: #c8cdb8; color: var(--ink); }
.rvn .rvn-btn--ghost2:hover { border-color: var(--ink); }

/* ---------- header ---------- */
.rvn .rvn-top {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 40;
  padding: 22px 0;
}
.rvn .rvn-top .rvn-wrap {
  display: flex;
  align-items: center;
  gap: 36px;
}
.rvn .rvn-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  color: var(--paper);
}
.rvn .rvn-brand img { height: 44px; width: auto; }
.rvn .rvn-brand span {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.rvn .rvn-brand span em { font-style: italic; font-weight: 400; color: var(--green); }
/* Lock hover state — theme's global a:hover paints link text black (invisible on ink) */
.rvn .rvn-brand:hover, .rvn .rvn-brand:hover span { color: var(--paper) !important; }
.rvn .rvn-brand:hover span em { color: #a5d94f !important; }
.rvn .rvn-nav { display: flex; gap: 24px; }
.rvn .rvn-nav a {
  color: var(--muted-dark);
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.15s ease;
}
.rvn .rvn-nav a:hover { color: var(--green); }
.rvn .rvn-top .rvn-btn { padding: 11px 22px; font-size: 14.5px; }
.rvn .rvn-burger {
  display: none;
  color: var(--paper);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 9px 18px;
}

/* mobile menu (:target) */
.rvn .rvn-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--ink);
  display: none;
  flex-direction: column;
  padding: 30px 28px;
}
.rvn .rvn-menu:target { display: flex; }
.rvn .rvn-menu-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8vh; }
.rvn .rvn-menu-close {
  color: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 9px 18px;
  font-weight: 600;
  font-size: 15px;
}
.rvn .rvn-menu nav { display: flex; flex-direction: column; gap: 6px; }
.rvn .rvn-menu nav a {
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(30px, 7vw, 44px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(247, 248, 243, 0.08);
}
.rvn .rvn-menu nav a:hover { color: var(--green); }

/* ---------- hero ---------- */
.rvn .rvn-hero {
  position: relative;
  background:
    radial-gradient(1100px 640px at 82% -12%, rgba(149, 201, 61, 0.2), transparent 62%),
    radial-gradient(820px 520px at 4% 112%, rgba(0, 98, 146, 0.28), transparent 58%),
    var(--ink);
  color: var(--paper);
  padding: 168px 0 96px;
  overflow: hidden;
}
.rvn .rvn-hero::before {
  /* topographic contour rings */
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: repeating-radial-gradient(circle at 78% 18%,
    transparent 0 84px,
    rgba(247, 248, 243, 0.05) 84px 85px);
  pointer-events: none;
}
.rvn .rvn-hero .rvn-wrap { position: relative; }
.rvn .rvn-hero h1 {
  font-size: clamp(44px, 7vw, 82px);
  max-width: 13ch;
  margin-bottom: 26px;
}
.rvn .rvn-hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--green);
}
.rvn .rvn-hero .rvn-lede {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--muted-dark);
  max-width: 54ch;
  margin-bottom: 40px;
}
.rvn .rvn-hero .rvn-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 74px; }

.rvn .rvn-marks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-dark);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.rvn .rvn-mark { background: var(--ink); padding: 22px 26px 22px 0; }
.rvn .rvn-mark:nth-child(2) { padding-left: 26px; }
.rvn .rvn-mark:nth-child(3) { padding-left: 26px; }
.rvn .rvn-mark b {
  display: block;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  color: var(--paper);
  margin-bottom: 3px;
}
.rvn .rvn-mark span { font-size: 14px; color: var(--muted-dark); }

/* ---------- generic section ---------- */
.rvn .rvn-sec { padding: 104px 0; }
.rvn .rvn-sec-head { max-width: 720px; margin-bottom: 58px; }
.rvn .rvn-sec-head h2 { font-size: clamp(32px, 4.4vw, 50px); margin-bottom: 18px; }
.rvn .rvn-sec-head p { color: var(--muted); font-size: 18px; }

/* ---------- services ---------- */
.rvn .rvn-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.rvn .rvn-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 34px 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.rvn .rvn-card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: 0 18px 44px -20px rgba(19, 23, 17, 0.25);
}
.rvn .rvn-card .rvn-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--green-deep);
  font-size: 17px;
}
.rvn .rvn-card h3 { font-family: var(--serif); font-weight: 500; font-size: 27px; letter-spacing: -0.01em; }
.rvn .rvn-card p { color: var(--muted); font-size: 16px; flex: 1; }
.rvn .rvn-card .rvn-more {
  font-weight: 600;
  font-size: 15px;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
.rvn .rvn-card .rvn-more::after { content: "→"; transition: transform 0.18s ease; }
.rvn .rvn-card:hover .rvn-more::after { transform: translateX(4px); }

/* ---------- approach (ink band) ---------- */
.rvn .rvn-approach { background: var(--ink); color: var(--paper); }
.rvn .rvn-approach .rvn-sec-head p { color: var(--muted-dark); }
.rvn .rvn-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--r);
  overflow: hidden;
}
.rvn .rvn-step { background: var(--ink-2); padding: 34px 28px 38px; }
.rvn .rvn-step b {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 44px;
  color: var(--green);
  line-height: 1;
  margin-bottom: 18px;
}
.rvn .rvn-step h3 { font-family: var(--serif); font-weight: 500; font-size: 22px; margin-bottom: 10px; }
.rvn .rvn-step p { color: var(--muted-dark); font-size: 15px; }

/* ---------- work / proof ---------- */
.rvn .rvn-work { background: var(--paper-2); }
.rvn .rvn-cases { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.rvn .rvn-case {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rvn .rvn-case .rvn-tag {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(0, 98, 146, 0.08);
  border-radius: 999px;
  padding: 6px 13px;
}
.rvn .rvn-case h3 { font-family: var(--serif); font-weight: 500; font-size: 23px; line-height: 1.2; }
.rvn .rvn-case p { color: var(--muted); font-size: 15.5px; }
.rvn .rvn-case .rvn-sys { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); font-size: 13.5px; color: #89917f; }

/* ---------- product band ---------- */
.rvn .rvn-product { background: var(--blue-deep); color: var(--paper); position: relative; overflow: hidden; }
.rvn .rvn-product::before {
  content: "";
  position: absolute;
  inset: -30% -10%;
  background: repeating-radial-gradient(circle at 12% 110%,
    transparent 0 70px,
    rgba(247, 248, 243, 0.05) 70px 71px);
  pointer-events: none;
}
.rvn .rvn-product .rvn-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.rvn .rvn-product h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 18px; }
.rvn .rvn-product .rvn-kicker { color: #a8d3ea; }
.rvn .rvn-product .rvn-kicker::before { background: var(--green); }
.rvn .rvn-product p { color: #c3dcea; max-width: 52ch; margin-bottom: 30px; }
.rvn .rvn-product .rvn-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.rvn .rvn-desk-card {
  background: rgba(19, 23, 17, 0.35);
  border: 1px solid rgba(247, 248, 243, 0.16);
  border-radius: var(--r);
  padding: 30px;
}
.rvn .rvn-desk-card ul { list-style: none; display: grid; gap: 13px; }
.rvn .rvn-desk-card li { display: flex; gap: 12px; font-size: 15.5px; color: #dcebf3; }
.rvn .rvn-desk-card li::before { content: "✓"; color: var(--green); font-weight: 700; }

/* ---------- perspective quote ---------- */
.rvn .rvn-quote { background: var(--paper); }
.rvn .rvn-quote .rvn-wrap { max-width: 880px; text-align: center; }
.rvn .rvn-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 26px;
}
.rvn .rvn-quote blockquote em { font-style: italic; color: var(--blue); }
.rvn .rvn-quote p { color: var(--muted); max-width: 56ch; margin: 0 auto 28px; }
.rvn .rvn-quote a.rvn-textlink {
  font-weight: 600;
  color: var(--blue);
  border-bottom: 1px solid rgba(0, 98, 146, 0.35);
  padding-bottom: 2px;
}
.rvn .rvn-quote a.rvn-textlink:hover { border-color: var(--blue); }

/* ---------- contact ---------- */
.rvn .rvn-contact { background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
.rvn .rvn-contact::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: repeating-radial-gradient(circle at 88% 90%,
    transparent 0 84px,
    rgba(247, 248, 243, 0.045) 84px 85px);
  pointer-events: none;
}
.rvn .rvn-contact .rvn-wrap { position: relative; }
.rvn .rvn-contact h2 { font-size: clamp(36px, 5.5vw, 62px); max-width: 16ch; margin-bottom: 20px; }
.rvn .rvn-contact .rvn-lede { color: var(--muted-dark); max-width: 52ch; margin-bottom: 38px; }
.rvn .rvn-contact .rvn-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 54px; }
.rvn .rvn-contact-rows { display: flex; gap: 48px; flex-wrap: wrap; border-top: 1px solid var(--line-dark); padding-top: 30px; }
.rvn .rvn-contact-rows span { display: block; font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-dark); margin-bottom: 6px; }
.rvn .rvn-contact-rows a, .rvn .rvn-contact-rows b { font-family: var(--serif); font-weight: 500; font-size: 20px; color: var(--paper); }
.rvn .rvn-contact-rows a:hover { color: var(--green); }

/* ---------- footer ---------- */
.rvn .rvn-foot { background: var(--ink); color: var(--muted-dark); border-top: 1px solid var(--line-dark); padding: 34px 0; }
.rvn .rvn-foot .rvn-wrap { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.rvn .rvn-foot .rvn-foot-brand { display: flex; align-items: center; gap: 10px; }
.rvn .rvn-foot .rvn-foot-brand img { height: 30px; width: auto; }
.rvn .rvn-foot nav { display: flex; gap: 22px; flex-wrap: wrap; }
.rvn .rvn-foot a { font-size: 14px; }
.rvn .rvn-foot a:hover { color: var(--green); }
.rvn .rvn-foot small { font-size: 13.5px; }

/* ---------- interior pages ---------- */
.rvn .rvn-hero--page { padding: 150px 0 74px; }
.rvn .rvn-hero--page h1 { font-size: clamp(38px, 5.5vw, 64px); max-width: 20ch; }
.rvn .rvn-hero--page .rvn-lede { margin-bottom: 34px; }
.rvn .rvn-hero--page .rvn-ctas { margin-bottom: 0; }

.rvn .rvn-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.rvn .rvn-split .rvn-sec-head { margin-bottom: 0; }

.rvn .rvn-checks { list-style: none; display: grid; gap: 15px; }
.rvn .rvn-checks li { display: flex; gap: 13px; font-size: 16px; color: var(--muted); line-height: 1.5; }
.rvn .rvn-checks li::before { content: "✓"; color: var(--green-deep); font-weight: 700; flex: none; }
.rvn .rvn-checks li b { color: var(--ink); font-weight: 600; }
.rvn .rvn-checks--card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 30px 30px;
}
.rvn .rvn-checks--dark li { color: var(--muted-dark); }
.rvn .rvn-checks--dark li b { color: var(--paper); }
.rvn .rvn-checks--dark li::before { color: var(--green); }

.rvn .rvn-minis { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.rvn .rvn-mini {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px 22px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.rvn .rvn-mini:hover { transform: translateY(-3px); border-color: var(--green); }
.rvn .rvn-mini h4 { font-family: var(--serif); font-weight: 500; font-size: 18.5px; margin-bottom: 8px; }
.rvn .rvn-mini p { font-size: 14px; color: var(--muted); line-height: 1.55; }

.rvn .rvn-tiers { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; align-items: start; }
.rvn .rvn-tier {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rvn .rvn-tier--featured { border-color: var(--green); box-shadow: 0 22px 48px -22px rgba(19, 23, 17, 0.28); }
.rvn .rvn-tier .rvn-tier-tag {
  align-self: flex-start;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(0, 98, 146, 0.08);
  border-radius: 999px;
  padding: 5px 12px;
}
.rvn .rvn-tier--featured .rvn-tier-tag { color: var(--green-deep); background: rgba(149, 201, 61, 0.16); }
.rvn .rvn-tier h3 { font-family: var(--serif); font-weight: 500; font-size: 26px; }
.rvn .rvn-tier > p { color: var(--muted); font-size: 15px; }
.rvn .rvn-tier .rvn-checks { gap: 11px; }
.rvn .rvn-tier .rvn-checks li { font-size: 14.5px; }
.rvn .rvn-tier .rvn-btn { align-self: flex-start; margin-top: 6px; padding: 12px 24px; font-size: 14.5px; }

.rvn .rvn-prose { max-width: 720px; }
.rvn .rvn-prose p { color: var(--muted); font-size: 17.5px; margin-bottom: 20px; }
.rvn .rvn-prose p b, .rvn .rvn-prose p strong { color: var(--ink); }

.rvn .rvn-callout {
  border-left: 3px solid var(--green);
  background: #fff;
  border-radius: 0 var(--r) var(--r) 0;
  padding: 26px 30px;
  margin: 34px 0;
}
.rvn .rvn-callout p { font-family: var(--serif); font-size: 21px; line-height: 1.4; color: var(--ink); margin: 0 0 8px; }
.rvn .rvn-callout a { font-weight: 600; font-size: 15px; color: var(--blue); }

/* ---------- reviews marquee (CSS-only infinite scroll) ---------- */
.rvn .rvn-reviews { overflow: hidden; position: relative; }
.rvn .rvn-reviews .rvn-wrap { margin-bottom: 46px; }
.rvn .rvn-reviews .rvn-sec-head { margin-bottom: 0; }
.rvn .rvn-marquee-shell { position: relative; overflow: hidden; }
.rvn .rvn-marquee-shell::before,
.rvn .rvn-marquee-shell::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}
.rvn .rvn-marquee-shell::before { left: 0; background: linear-gradient(90deg, var(--paper), transparent); }
.rvn .rvn-marquee-shell::after { right: 0; background: linear-gradient(-90deg, var(--paper), transparent); }
.rvn .rvn-marquee {
  display: flex;
  gap: 22px;
  width: max-content;
  padding: 6px 0 12px;
  animation: rvnScroll 70s linear infinite;
}
.rvn .rvn-marquee:hover { animation-play-state: paused; }
@keyframes rvnScroll { to { transform: translateX(calc(-50% - 11px)); } }
.rvn .rvn-review {
  width: 400px;
  flex: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rvn .rvn-review::before {
  content: "\201C";
  font-family: var(--serif);
  font-size: 44px;
  line-height: 0.6;
  color: var(--green);
  display: block;
  margin-top: 8px;
}
.rvn .rvn-review p { color: var(--muted); font-size: 14.5px; line-height: 1.6; flex: 1; }
.rvn .rvn-review footer b { display: block; font-family: var(--serif); font-weight: 500; font-size: 17px; color: var(--ink); }
.rvn .rvn-review footer span { font-size: 13px; color: #8a9186; }
@media (prefers-reduced-motion: reduce) {
  .rvn .rvn-marquee { animation: none; flex-wrap: wrap; width: auto; padding: 0 28px; }
  .rvn .rvn-marquee > .rvn-review[aria-hidden="true"] { display: none; }
  .rvn .rvn-marquee-shell::before, .rvn .rvn-marquee-shell::after { display: none; }
}
@media (max-width: 640px) {
  .rvn .rvn-review { width: 320px; }
}

/* ---------- contact form section (styles a real Elementor form widget) ---------- */
.rvn-formsec { background: #f7f8f3; padding: 10px 0 100px; }
.rvn-formsec .elementor-widget-form { max-width: 860px; margin: 0 auto; }
.rvn-formsec .elementor-field-group { margin-bottom: 18px; }
.rvn-formsec .elementor-field-group label {
  font-family: "Inter", -apple-system, sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #131711;
  margin-bottom: 7px;
  display: block;
}
.rvn-formsec input[type="text"],
.rvn-formsec input[type="email"],
.rvn-formsec input[type="tel"],
.rvn-formsec input[type="url"],
.rvn-formsec select,
.rvn-formsec textarea {
  background: #fff !important;
  border: 1px solid #dfe3d3 !important;
  border-radius: 10px !important;
  padding: 13px 16px !important;
  font-family: "Inter", -apple-system, sans-serif !important;
  font-size: 16px !important;
  color: #131711 !important;
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.rvn-formsec input:focus,
.rvn-formsec select:focus,
.rvn-formsec textarea:focus {
  border-color: #95c93d !important;
  box-shadow: 0 0 0 3px rgba(149, 201, 61, 0.2) !important;
  outline: none !important;
}
.rvn-formsec button[type="submit"] {
  background: #95c93d !important;
  color: #131711 !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 15px 34px !important;
  font-family: "Inter", -apple-system, sans-serif !important;
  font-size: 15.5px !important;
  font-weight: 600 !important;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}
.rvn-formsec button[type="submit"]:hover { background: #a5d94f !important; transform: translateY(-1px); }

/* ---------- reveal on scroll (progressive) ---------- */
@supports (animation-timeline: view()) {
  .rvn .rvn-reveal {
    animation: rvnRise linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 55%;
  }
  @keyframes rvnRise {
    from { opacity: 0; transform: translateY(26px); }
    to { opacity: 1; transform: translateY(0); }
  }
}
@media (prefers-reduced-motion: reduce) {
  .rvn .rvn-reveal { animation: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .rvn .rvn-nav, .rvn .rvn-top .rvn-btn--green { display: none; }
  .rvn .rvn-burger { display: inline-flex; }
  .rvn .rvn-cards { grid-template-columns: 1fr; }
  .rvn .rvn-steps { grid-template-columns: 1fr 1fr; }
  .rvn .rvn-cases { grid-template-columns: 1fr; }
  .rvn .rvn-product .rvn-wrap { grid-template-columns: 1fr; gap: 40px; }
  .rvn .rvn-split { grid-template-columns: 1fr; gap: 40px; }
  .rvn .rvn-minis { grid-template-columns: 1fr 1fr; }
  .rvn .rvn-tiers { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .rvn { font-size: 16px; }
  .rvn .rvn-hero { padding: 140px 0 70px; }
  .rvn .rvn-sec { padding: 74px 0; }
  .rvn .rvn-marks { grid-template-columns: 1fr; }
  .rvn .rvn-mark, .rvn .rvn-mark:nth-child(2), .rvn .rvn-mark:nth-child(3) { padding: 18px 0; }
  .rvn .rvn-steps { grid-template-columns: 1fr; }
  .rvn .rvn-brand img { height: 36px; }
}
