/* =========================================================================
   iogreen.in — site system
   Deep logo blue on white porcelain. Newsreader for headlines and product
   names, Hanken Grotesk for everything else. Rules, not boxes; real product
   screenshots, not illustrations; green only for ticks.
   ========================================================================= */

:root {
  --blue:       #0E4463;   /* the logo */
  --blue-deep:  #082C42;   /* hero field, footer */
  --blue-mid:   #3E6E8C;
  --blue-tint:  #E6EEF3;
  --blue-line:  #C9D8E1;

  --ink:   #14202A;
  --ink-2: #4A5A66;
  --ink-3: #7A8791;
  --white: #FFFFFF;
  --porcelain: #F5F7F8;
  --hair:  #E3E8EB;
  --hair-2:#CFD7DC;

  --green: #2E8B5B;
  --green-tint: #E4F2EA;

  --serif: "Newsreader", "Iowan Old Style", "Georgia", serif;
  --sans:  "Hanken Grotesk", "Helvetica Neue", system-ui, sans-serif;

  --max: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --section: clamp(72px, 9vw, 128px);
  --r: 6px;
  --r-lg: 22px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1em; }
::selection { background: var(--blue-tint); color: var(--ink); }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.num { font-variant-numeric: tabular-nums lining-nums; }

/* ---------- Type ---------- */
h1, h2, h3, .display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
  font-variation-settings: "opsz" 72;
}
h1 { font-size: clamp(2.8rem, 6.4vw, 5.4rem); font-weight: 300; letter-spacing: -0.03em; line-height: 0.98; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.75rem); font-variation-settings: "opsz" 36; }
h4 { font-family: var(--sans); font-weight: 600; font-size: 1.05rem; margin: 0; color: var(--ink); }
em { font-style: italic; }
h1 em, h2 em { color: var(--blue); font-weight: inherit; }
.lede { font-size: clamp(1.15rem, 1.6vw, 1.35rem); line-height: 1.5; color: var(--ink-2); max-width: 50ch; }
.kicker { font-size: 0.95rem; font-weight: 600; color: var(--blue); margin: 0 0 14px; }
.muted { color: var(--ink-3); }
.small { font-size: 0.9rem; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,0.88);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--hair);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 72px; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.wordmark { display: inline-flex; align-items: baseline; gap: 8px; color: var(--blue); }
.wordmark .name { font-family: var(--sans); font-weight: 800; font-size: 1.55rem; letter-spacing: -0.035em; line-height: 1; }
.wordmark .sub { font-family: var(--sans); font-weight: 500; font-size: 0.78rem; color: var(--blue-mid); letter-spacing: 0.01em; }
.nav-links { display: flex; align-items: center; gap: 30px; font-size: 0.95rem; font-weight: 500; }
.nav-links a { color: var(--ink-2); padding: 6px 0; border-bottom: 1.5px solid transparent; transition: color .2s ease, border-color .2s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.current { color: var(--blue); border-bottom-color: var(--blue); }
.nav-links a.btn { margin-left: 8px; padding: 8px 16px; border-bottom: 0; color: var(--white); }
.nav-links a.btn:hover { color: var(--white); }
.nav-toggle { display: none; width: 40px; height: 40px; border: 1px solid var(--hair); border-radius: var(--r); background: var(--white); color: var(--ink); align-items: center; justify-content: center; }
@media (max-width: 860px) {
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--white); border-bottom: 1px solid var(--hair); padding: 8px var(--gutter) 16px; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--hair); }
  .nav-links a.current { border-bottom-color: var(--hair); }
  .nav-links .btn { margin: 12px 0 0; justify-content: center; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-family: var(--sans); font-weight: 600; font-size: 0.95rem; line-height: 1.2;
  border: 1px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn-blue { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-blue:hover { background: var(--blue-deep); border-color: var(--blue-deep); }
.btn-line { background: transparent; color: var(--ink); border-color: var(--hair-2); }
.btn-line:hover { border-color: var(--ink); }
.btn-paper { background: var(--white); color: var(--blue); border-color: var(--white); }
.btn-paper:hover { background: var(--blue-tint); border-color: var(--blue-tint); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); }
.btn-ghost:hover { border-color: var(--white); }
.btn-lg { padding: 15px 26px; font-size: 1.02rem; }
.btn-sm { padding: 8px 14px; font-size: 0.86rem; }
.textlink { color: var(--blue); font-weight: 600; border-bottom: 1.5px solid var(--blue-line); transition: border-color .2s ease; }
.textlink:hover { border-bottom-color: var(--blue); }

/* ---------- Sections ---------- */
.section { padding: var(--section) 0; }
.section.porcelain { background: var(--porcelain); }
.section.tight { padding: clamp(48px, 6vw, 80px) 0; }
.section-head { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(24px, 5vw, 80px); align-items: end; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head h2 { max-width: 16ch; }
.section-head p { margin: 0; color: var(--ink-2); font-size: 1.1rem; max-width: 46ch; }
.section-head.stack { grid-template-columns: 1fr; max-width: 760px; }
.section-head.stack p { margin-top: 16px; }
@media (max-width: 860px) { .section-head { grid-template-columns: 1fr; } }

/* ---------- Hero field ---------- */
.field {
  position: relative;
  background: var(--blue-deep);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(48px, 6vw, 88px) clamp(28px, 5vw, 80px) clamp(48px, 6vw, 96px);
  overflow: visible;
  isolation: isolate;
}
.field::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: -1;
  background:
    radial-gradient(55% 70% at 85% 10%, rgba(62,110,140,0.55), transparent 62%),
    radial-gradient(40% 50% at 10% 100%, rgba(14,68,99,0.9), transparent 70%),
    var(--blue-deep);
}
.field h1 { color: var(--white); max-width: 14ch; }
.field h1 em { color: #BBD3E3; }
.field .lede { color: rgba(255,255,255,0.78); margin: 26px 0 34px; }
.field-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.field-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 4vw, 64px); align-items: end; }
.field-grid > div:first-child { padding-bottom: clamp(16px, 3vw, 48px); }
.field-note { font-size: 0.92rem; color: rgba(255,255,255,0.6); margin: 40px 0 0; max-width: 40ch; }

/* browser frame for product screenshots */
.shot {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 30px 60px -28px rgba(8,44,66,0.55), 0 2px 6px rgba(8,44,66,0.18);
  overflow: hidden;
  border: 1px solid rgba(8,44,66,0.18);
}
.shot .bar { height: 30px; background: #EEF2F4; border-bottom: 1px solid #DCE3E7; display: flex; align-items: center; gap: 6px; padding: 0 12px; }
.shot .bar i { width: 9px; height: 9px; border-radius: 50%; background: #CBD5DB; display: block; }
.shot .bar span { margin-left: 10px; font-size: 11px; color: var(--ink-3); font-weight: 500; }
.shot img { width: 100%; height: auto; }
.field .shot { margin-bottom: clamp(-170px, -13vw, -90px); }
.field-spacer { height: clamp(90px, 13vw, 170px); }
@media (max-width: 960px) {
  .field-grid { grid-template-columns: 1fr; }
  .field-grid > div:first-child { padding-bottom: 0; }
  .field .shot { margin-bottom: 0; }
  .field-spacer { height: 0; }
}

/* ---------- Products index ---------- */
.index { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--ink); }
.index-item { padding: 28px clamp(16px, 2vw, 32px) 32px 0; border-right: 1px solid var(--hair); display: flex; flex-direction: column; gap: 10px; color: var(--ink); }
.index-item + .index-item { padding-left: clamp(16px, 2vw, 32px); }
.index-item:last-child { border-right: none; }
.index-item .domain { font-size: 0.9rem; font-weight: 600; color: var(--blue); }
.index-item h3 { font-size: 1.9rem; }
.index-item p { margin: 0; color: var(--ink-2); font-size: 1rem; max-width: 36ch; }
.index-item .go { margin-top: auto; padding-top: 14px; font-weight: 600; font-size: 0.95rem; color: var(--blue); }
a.index-item:hover h3 { color: var(--blue); }
a.index-item:hover .go { border-bottom: 1.5px solid var(--blue); display: inline-block; align-self: flex-start; }
@media (max-width: 860px) {
  .index { grid-template-columns: 1fr; }
  .index-item, .index-item + .index-item { border-right: none; border-bottom: 1px solid var(--hair); padding: 24px 0; }
}

/* ---------- Split (text + shot) ---------- */
.split { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(32px, 6vw, 96px); align-items: center; }
.split.reverse { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); }
.split .shot { box-shadow: 0 24px 48px -28px rgba(8,44,66,0.35), 0 1px 4px rgba(8,44,66,0.12); }
@media (max-width: 960px) { .split, .split.reverse { grid-template-columns: 1fr; } }

/* ---------- Definition rows ---------- */
.rows { border-top: 1px solid var(--ink); }
.row { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr); gap: clamp(16px, 4vw, 64px); padding: 26px 0; border-bottom: 1px solid var(--hair); }
.row h3 { font-size: 1.5rem; }
.row .sub { display: block; font-family: var(--sans); font-size: 0.9rem; color: var(--ink-3); margin-top: 6px; }
.row p { margin: 0; color: var(--ink-2); max-width: 60ch; }
.row ul { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 12px; }
.row ul li { font-size: 0.92rem; color: var(--ink-2); position: relative; padding-left: 14px; }
.row ul li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-line); }
@media (max-width: 760px) { .row { grid-template-columns: 1fr; gap: 8px; } }

/* ---------- Grid of points ---------- */
.points { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 48px); }
.points.two { grid-template-columns: repeat(2, 1fr); }
.point { border-top: 1px solid var(--ink); padding-top: 18px; }
.point h4 { font-family: var(--serif); font-weight: 400; font-size: 1.5rem; letter-spacing: -0.015em; margin-bottom: 8px; font-variation-settings: "opsz" 36; }
.point p { margin: 0; color: var(--ink-2); font-size: 1rem; max-width: 40ch; }
@media (max-width: 860px) { .points, .points.two { grid-template-columns: 1fr; } }

/* ---------- Process (a true sequence) ---------- */
.process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border-top: 1px solid var(--ink); }
.stage { padding: 22px clamp(12px, 1.6vw, 24px) 8px 0; border-right: 1px solid var(--hair); }
.stage + .stage { padding-left: clamp(12px, 1.6vw, 24px); }
.stage:last-child { border-right: none; }
.stage .n { font-family: var(--serif); font-size: 1.1rem; color: var(--blue); font-variant-numeric: lining-nums; }
.stage h4 { font-family: var(--serif); font-weight: 400; font-size: 1.45rem; margin: 10px 0 8px; letter-spacing: -0.01em; }
.stage p { margin: 0; color: var(--ink-2); font-size: 0.95rem; }
@media (max-width: 960px) { .process { grid-template-columns: 1fr; } .stage, .stage + .stage { border-right: none; border-bottom: 1px solid var(--hair); padding: 20px 0; } }

/* ---------- Clients ---------- */
.logos { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--hair); border: 1px solid var(--hair); }
.logos div { background: var(--white); aspect-ratio: 5 / 3; display: flex; align-items: center; justify-content: center; padding: 22px 26px; }
.logos img { max-height: 44px; width: auto; max-width: 100%; filter: grayscale(1); opacity: 0.72; transition: filter .25s ease, opacity .25s ease; }
.logos div:hover img { filter: none; opacity: 1; }
@media (max-width: 860px) { .logos { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .logos { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Contact band ---------- */
.band { background: var(--blue-deep); color: var(--white); padding: var(--section) 0; }
.band h2 { color: var(--white); max-width: 18ch; }
.band h2 em { color: #BBD3E3; }
.band .lede { color: rgba(255,255,255,0.75); }
.band-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.card-contact { border-top: 1px solid rgba(255,255,255,0.25); padding-top: 22px; }
.card-contact h5 { font-family: var(--serif); font-weight: 400; font-size: 1.5rem; margin: 0 0 4px; }
.card-contact .role { color: rgba(255,255,255,0.6); font-size: 0.92rem; margin-bottom: 14px; }
.card-contact .lines { font-size: 1.05rem; line-height: 1.8; }
.card-contact .lines a { border-bottom: 1px solid rgba(255,255,255,0.3); }
.card-contact .lines a:hover { border-bottom-color: var(--white); }
@media (max-width: 860px) { .band-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.foot { background: var(--porcelain); border-top: 1px solid var(--hair); padding: 48px 0 32px; font-size: 0.92rem; color: var(--ink-2); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.foot .wordmark { margin-bottom: 14px; }
.foot h6 { font-family: var(--sans); font-weight: 700; font-size: 0.85rem; color: var(--ink); margin: 0 0 12px; }
.foot-col a { display: block; padding: 4px 0; color: var(--ink-2); }
.foot-col a:hover { color: var(--blue); }
.foot-addr { line-height: 1.7; }
.foot-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 36px; padding-top: 18px; border-top: 1px solid var(--hair); font-size: 0.85rem; color: var(--ink-3); }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }

/* ---------- Editions / pricing ---------- */
.tick { display: inline-block; width: 18px; height: 18px; vertical-align: -3px; }
.tick svg { width: 18px; height: 18px; }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--hair); border-radius: var(--r-lg); overflow: hidden; background: var(--white); }
.plan { padding: clamp(26px, 3vw, 40px) clamp(20px, 2.4vw, 34px) clamp(30px, 3.4vw, 44px); border-right: 1px solid var(--hair); display: flex; flex-direction: column; position: relative; }
.plan:last-child { border-right: none; }
.plan.recommended { background: var(--blue-tint); }
.plan-tag { position: absolute; top: 22px; right: 22px; font-size: 0.78rem; font-weight: 700; color: var(--blue); background: var(--white); border: 1px solid var(--blue-line); padding: 4px 10px; border-radius: 999px; }
.plan-name { font-family: var(--serif); font-weight: 400; font-size: 2.2rem; letter-spacing: -0.02em; line-height: 1; margin: 0; }
.plan-name small { display: block; font-family: var(--sans); font-size: 0.9rem; font-weight: 600; letter-spacing: 0; color: var(--blue); margin-bottom: 10px; }
.plan-for { color: var(--ink-2); font-size: 1rem; margin: 12px 0 0; min-height: 3.2em; }
.price { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--hair-2); }
.price .amount { font-family: var(--serif); font-size: clamp(2rem, 3vw, 2.6rem); letter-spacing: -0.03em; line-height: 1; color: var(--ink); font-variation-settings: "opsz" 72; }
.price .amount sup { font-size: 0.5em; vertical-align: 0.5em; font-weight: 400; margin-right: 2px; }
.price .amount span { font-family: var(--sans); font-size: 0.92rem; font-weight: 500; color: var(--ink-2); letter-spacing: 0; margin-left: 4px; }
.price .amount.custom { font-size: clamp(1.4rem, 2.2vw, 1.8rem); font-style: italic; }
.price .label { font-size: 0.88rem; color: var(--ink-3); margin-top: 6px; }
.price.monthly .amount { font-size: clamp(1.5rem, 2.3vw, 1.9rem); }
.plan .btn { margin-top: 24px; }
.plan-users { margin: 20px 0 0; font-size: 0.95rem; color: var(--ink-2); }
.plan-users strong { color: var(--ink); font-weight: 700; }
.feat { margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--hair-2); }
.feat .inherits { font-size: 0.9rem; font-weight: 700; color: var(--blue); margin: 0 0 8px; }
.feat h4 { font-size: 0.8rem; font-weight: 700; color: var(--ink-3); margin: 16px 0 4px; }
.feat h4:first-child { margin-top: 0; }
.feat li { position: relative; padding: 7px 0 7px 28px; font-size: 0.96rem; line-height: 1.45; color: var(--ink); border-bottom: 1px solid var(--hair); }
.feat li:last-child { border-bottom: none; }
.feat li .tick { position: absolute; left: 2px; top: 9px; }
.feat li .sub { display: block; font-size: 0.84rem; color: var(--ink-3); margin-top: 2px; }
@media (max-width: 900px) { .plans { grid-template-columns: 1fr; } .plan { border-right: none; border-bottom: 1px solid var(--hair); } .plan:last-child { border-bottom: none; } .plan-for { min-height: 0; } }

/* stepped monthly meter */
.steps { display: grid; grid-template-columns: 170px 1fr; gap: 0 24px; align-items: end; padding: 22px 0; border-top: 1px solid var(--hair); }
.steps:last-of-type { border-bottom: 1px solid var(--hair); }
.steps .who { font-family: var(--serif); font-size: 1.5rem; letter-spacing: -0.01em; padding-bottom: 12px; }
.steps .who small { display: block; font-family: var(--sans); font-size: 0.85rem; color: var(--ink-3); margin-top: 4px; }
.stair { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; align-items: end; }
.step { display: flex; flex-direction: column; justify-content: flex-end; background: var(--porcelain); border: 1px solid var(--hair); border-top: 2px solid var(--blue-line); padding: 14px 16px 12px; min-height: 70px; border-radius: 4px 4px 0 0; }
.steps.premium .step { background: var(--blue-tint); border-color: var(--blue-line); border-top-color: var(--blue); }
.step .cap { font-size: 0.8rem; color: var(--ink-3); margin-bottom: 8px; }
.step .cap b { color: var(--ink); }
.step .amt { font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.7rem); letter-spacing: -0.02em; line-height: 1; }
.step .amt span { font-family: var(--sans); font-size: 0.8rem; color: var(--ink-3); margin-left: 4px; }
.steps.plus .stair { grid-template-columns: 1fr; }
.steps.plus .step { border-top-color: var(--hair-2); }
.steps.plus .step .amt { font-style: italic; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; gap: 12px; } .stair { grid-template-columns: repeat(2, 1fr); } }

/* comparison table */
.cmp-wrap { overflow-x: auto; }
.cmp { width: 100%; border-collapse: collapse; min-width: 720px; }
.cmp th, .cmp td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--hair); vertical-align: middle; }
.cmp thead th { font-family: var(--serif); font-weight: 400; font-size: 1.3rem; letter-spacing: -0.01em; border-bottom: 1px solid var(--ink); padding-bottom: 12px; }
.cmp thead th.c { text-align: center; width: 16%; }
.cmp thead th.c small { display: block; font-family: var(--sans); font-size: 0.78rem; color: var(--ink-3); letter-spacing: 0; margin-top: 2px; }
.cmp thead th.c.recommended { color: var(--blue); }
.cmp tr.group td { font-family: var(--serif); font-size: 1.15rem; padding-top: 28px; padding-bottom: 8px; border-bottom: 1px solid var(--hair-2); }
.cmp tbody td { font-size: 0.96rem; color: var(--ink); }
.cmp tbody td .sub { display: block; font-size: 0.82rem; color: var(--ink-3); }
.cmp td.c { text-align: center; }
.cmp td.c .no { display: inline-block; width: 12px; height: 1px; background: var(--hair-2); vertical-align: middle; }
.cmp td.c .txt { font-weight: 600; font-size: 0.92rem; }
.cmp td.c.recommended { background: rgba(14,68,99,0.04); }

/* ---------- Page-load sequence (hero only) ---------- */
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.field h1, .field .lede, .field-actions, .field .shot { animation: rise .8s cubic-bezier(.2,.6,.2,1) both; }
.field .lede { animation-delay: .12s; } .field-actions { animation-delay: .22s; } .field .shot { animation-delay: .3s; }
@media (prefers-reduced-motion: reduce) { .field h1, .field .lede, .field-actions, .field .shot { animation: none; } }

/* ---------- Print ---------- */
@media print {
  .nav, .btn, .foot, .band { display: none !important; }
  body { color: #000; }
  .field { background: #fff; color: #000; border: 1px solid #000; padding: 24px; }
  .field::before { display: none; }
  .field h1, .field h1 em { color: #000; }
  .field .lede { color: #333; }
  .field .shot { transform: none; box-shadow: none; }
  .section { padding: 24px 0; }
  .plan.recommended { background: #fff; }
}
