/* ==========================================================================
   FLOWWORKS — SHARED SITE STYLES
   --------------------------------------------------------------------------
   One stylesheet for the whole marketing site. Every page links this file.
   Colors and fonts are taken directly from the current FlowWorks theme.

   TO REBRAND THE WHOLE SITE: change the variables in the :root block below.
   Change one value here and it updates on every page at once.
   ========================================================================== */

:root {
  /* Palette taken from the application (crtest), theme "flowworks" for light
     values and "control-room" for the accent. The product's colour is teal
     through cyan; the site now uses the same values rather than its own. */
  --navy:        #22303a;   /* app body text — headings, nav */
  --navy-deep:   #284860;   /* app navbar — footer, dark bands */
  --blue:        #146073;   /* app link + primary button — the primary */
  --blue-dark:   #0f4c5c;   /* hover */
  --blue-light:  #1a7f8e;   /* app dark-theme primary */
  --cyan:        #22b8cf;   /* app dark-theme accent — ties the logo in */
  --link:        #146073;
  --sky:         #f2f7f9;   /* app panel tint — soft section backgrounds */
  --sky-deep:    #e8f1f4;
  --green:       #3e8149;   /* app btn-success — SUCCESS ONLY, not a CTA */
  --green-dark:  #33683e;
  --green-light: #56b465;
  --orange:      #a9691a;   /* app btn-warning */
  --grey:        #d5e2e7;   /* app border */
  --dark-grey:   #22303a;
  --light-grey:  #f5f7f9;
  --red:         #c0453b;   /* app btn-danger */
  --text:        #3a444e;
  --muted:       #5c6b77;   /* app muted */
  --border:      #d5e2e7;

  --brand-gradient: linear-gradient(135deg, #22303a 0%, #146073 55%, #22b8cf 100%);
  --font-head: "Inter", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  --maxw: 1180px;
  --radius: 14px;
  --shadow: 0 22px 48px -20px rgba(34, 48, 58, 0.35);
  --shadow-sm: 0 8px 22px -12px rgba(34, 48, 58, 0.40);
}


/* ---- Base / reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-body); color: var(--text); line-height: 1.65; background: #fff; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.15; margin: 0 0 .5em; }
h1 { font-size: clamp(2.2rem, 4.8vw, 3.5rem); font-weight: 900; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.45rem); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; font-weight: 700; }
p  { margin: 0 0 1rem; }
a  { color: var(--link); text-decoration: none; }
a:hover { color: var(--blue-dark); }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 50px 0; }
.section--alt { background: var(--light-grey); }
.section--sky { background: var(--sky); }
.center { text-align: center; }
.eyebrow { display: inline-block; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .13em; font-size: .78rem; color: var(--blue); margin-bottom: 14px; }
.lead { font-size: 1.16rem; color: var(--muted); max-width: 640px; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; gap: .5em; font-family: var(--font-head); font-weight: 700; font-size: .98rem; padding: 14px 28px; border-radius: 10px; border: 2px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; white-space: nowrap; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--blue-dark); color: #fff; }
.btn--blue { background: var(--blue); color: #fff; box-shadow: var(--shadow-sm); }
.btn--blue:hover { background: var(--blue-dark); color: #fff; }
.btn--ghost { background: #fff; color: var(--blue); border-color: var(--grey); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue-dark); }
.btn--on-dark { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.4); }
.btn--on-dark:hover { background: rgba(255,255,255,.22); color: #fff; }

/* ======================================================================
   HEADER / NAV  (markup injected by site.js)
   ====================================================================== */
#site-header { position: sticky; top: 0; z-index: 50; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand-logo { height: 32px; width: auto; }  /* 32px not 50px: the infinitii
   flowworks lockup is 9.68:1 against the old logo's 4.93:1, so at 50px it
   would run 484px wide and crowd the nav. At 32px it is 310px. */
.nav > nav { flex: 1; }
.nav-links { display: flex; align-items: center; justify-content: space-between; gap: 20px; list-style: none; margin: 0 28px; padding: 0; }
.nav-links a { font-family: var(--font-head); font-weight: 500; color: var(--navy); font-size: .96rem; }
.nav-links a:hover { color: var(--blue); }
.nav-links a.is-active { color: var(--blue); }
/* Dropdown submenu */
.nav-links .has-sub { position: relative; }
.nav-links .sub-toggle { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.nav-links .sub-toggle svg { width: 12px; height: 12px; transition: transform .15s ease; }
.nav-links .has-sub.open .sub-toggle svg { transform: rotate(180deg); }
.submenu { position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(6px); min-width: 224px; list-style: none; margin: 0; padding: 8px; background: #fff; border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transition: opacity .16s ease, transform .16s ease; z-index: 60; }
.nav-links .has-sub.open .submenu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.submenu li { margin: 0; }
.submenu a { display: block; padding: 10px 14px; border-radius: 8px; color: var(--navy); font-size: .92rem; white-space: nowrap; }
.submenu a:hover { background: var(--sky); color: var(--blue); }
.submenu li.sep { margin-top: 6px; padding-top: 6px; border-top: 1px solid var(--border); }
.submenu li.sep a { font-weight: 600; color: var(--blue); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-cta .btn { padding: 10px 20px; }
.nav-login { font-family: var(--font-head); font-weight: 700; }
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; }

/* ======================================================================
   HERO (home) + PAGE HEADER (interior pages)
   ====================================================================== */
.hero { background: var(--brand-gradient); color: #fff; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.02fr 1.05fr; gap: 48px; align-items: center; padding: 36px 0 40px; }
.hero .eyebrow { color: var(--cyan); }
.hero h1 { color: #fff; }
.hero p.lead { max-width: 520px; color: rgba(255,255,255,.88); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-trust { margin-top: 40px; display: flex; gap: 40px; flex-wrap: wrap; }
.hero-trust .num { font-family: var(--font-head); font-weight: 900; font-size: 2rem; color: #fff; line-height: 1; }
.hero-trust .lbl { font-size: .85rem; color: rgba(255,255,255,.72); }
.hero-media { position: relative; }
.hero-media::before { content: ""; position: absolute; inset: -8% -6% -6% -6%; background: radial-gradient(closest-side, rgba(159,211,173,.28), transparent 72%); z-index: 0; }
.hero-media img { position: relative; z-index: 1; filter: drop-shadow(0 26px 40px rgba(44,69,97,.28)); }

/* Compact header band for interior pages */
.page-header { background: var(--brand-gradient); color: #fff; text-align: center; padding: 72px 0 64px; position: relative; overflow: hidden; }
.page-header::after { content: ""; position: absolute; right: -140px; bottom: -160px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(86,180,101,.30), transparent 62%); }
.page-header .eyebrow { color: #9fd3ad; }
.page-header h1 { color: #fff; position: relative; z-index: 1; }
.page-header p { color: rgba(255,255,255,.9); max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }

/* ======================================================================
   LOGO STRIP
   ====================================================================== */
.logos { padding: 42px 0; border-bottom: 1px solid var(--border); background: #fff; }
.logos p { text-align: center; color: var(--muted); font-family: var(--font-head); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; font-size: .78rem; margin-bottom: 22px; }
.logo-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 46px; align-items: center; }
.logo-row span { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: #aeb6c4; }
.logo-row img { height: 95px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .65; transition: filter .2s, opacity .2s; }
.logo-row img:hover { filter: none; opacity: 1; }

/* ======================================================================
   FEATURE CARDS  (.grid-3 / .grid-2 / .card)
   ====================================================================== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 50px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-top: 50px; }

/* Client / partner logo grid */
.client-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 50px; }
.client-tile { flex: 0 0 130px; display: flex; align-items: center; justify-content: center; text-align: center; padding: 8px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.client-tile img { max-width: 100%; max-height: 110px; width: auto; object-fit: contain; filter: grayscale(100%); opacity: .78; transition: filter .18s ease, opacity .18s ease; }
.client-tile:hover { transform: translateY(-4px); border-color: var(--blue-light); box-shadow: var(--shadow-sm); }
.client-tile:hover img { filter: grayscale(0); opacity: 1; }

/* Plain two-column FAQ (no card chrome) */
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 44px 56px; margin-top: 56px; text-align: left; }
.faq-grid h3 { font-size: 1.4rem; font-weight: 500; margin-bottom: .45em; }
.faq-grid p { color: var(--text); margin: 0; }
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 30px; transition: transform .18s ease, box-shadow .18s ease; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card .ico { width: 54px; height: 54px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 20px; background: var(--sky); color: var(--blue); }
.card .ico svg { width: 27px; height: 27px; }
.card .ico.ico--green { background: var(--sky-deep); color: var(--blue-light); }
.card .ico.ico--orange { background: #fbf1dd; color: var(--orange); }
.card h3 { color: var(--navy); }
.card p { margin-bottom: 0; color: var(--muted); }

/* ======================================================================
   SPLIT / SPOTLIGHT ROWS
   ====================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split + .split { margin-top: 90px; }
.split--reverse .split-media { order: 2; }
.split-media { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.split-media img { border-radius: 6px; margin: 0 auto; }
.checklist { list-style: none; padding: 0; margin: 20px 0 0; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; color: var(--text); }
.checklist svg { flex: none; width: 22px; height: 22px; color: var(--blue-light); margin-top: 3px; }

/* ======================================================================
   STATS BAND
   ====================================================================== */
.stats-band { background: var(--navy); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stats-grid .num { font-family: var(--font-head); font-weight: 900; font-size: clamp(2rem, 4vw, 2.9rem); color: #fff; }
.stats-grid .num em { color: var(--cyan); font-style: normal; }
.stats-grid .lbl { color: rgba(255,255,255,.74); font-size: .95rem; }

/* ======================================================================
   WHY / BENEFITS
   ====================================================================== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 48px; text-align: center; }
.why-item .ico { width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center; background: var(--sky); color: var(--blue); }
.why-item .ico svg { width: 28px; height: 28px; }
.why-item h3 { color: var(--navy); }
.why-item p { color: var(--muted); }

/* ======================================================================
   TESTIMONIALS
   ====================================================================== */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 50px; text-align: left; }
.quote { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); }
.quote .stars { color: var(--orange); letter-spacing: 2px; margin-bottom: 12px; }
.quote blockquote { margin: 0 0 20px; font-size: 1.02rem; color: var(--text); }
.quote .who { display: flex; align-items: center; gap: 12px; }
.quote .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--blue-light); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; }
.quote .who b { color: var(--navy); font-family: var(--font-head); display: block; font-size: .96rem; }
.quote .who small { color: var(--muted); }

/* ======================================================================
   CASE-STUDY / ARTICLE CARDS  (customers, news, webinars)
   ====================================================================== */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 50px; text-align: left; }
.post { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease; display: flex; flex-direction: column; }
.post:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post-thumb { aspect-ratio: 16 / 9; background: var(--sky); overflow: hidden; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.post .tag { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; color: var(--blue); margin-bottom: 10px; }
.post h3 { color: var(--navy); margin-bottom: .4em; }
.post p { color: var(--muted); margin-bottom: 16px; }
.post .post-meta { margin-top: auto; font-size: .85rem; color: var(--muted); }
.post a.post-link { font-family: var(--font-head); font-weight: 700; color: var(--blue); font-size: .92rem; }

/* ======================================================================
   PRICING
   ====================================================================== */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 50px; align-items: stretch; }
.price { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 32px; display: flex; flex-direction: column; text-align: left; }
.price--featured { border-color: var(--blue); box-shadow: var(--shadow); position: relative; }
.price--featured .badge { position: absolute; top: -13px; left: 32px; background: var(--blue); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; padding: 5px 12px; border-radius: 999px; }
.price h3 { color: var(--navy); }
.price .amount { font-family: var(--font-head); font-weight: 900; font-size: 2.6rem; color: var(--navy); line-height: 1; margin: 10px 0 4px; }
.price .amount small { font-size: .95rem; font-weight: 500; color: var(--muted); }
.price .price-desc { color: var(--muted); margin-bottom: 20px; }
.price .checklist { margin-top: 4px; margin-bottom: 26px; }
.price .checklist li { font-size: .95rem; }
.price .btn { margin-top: auto; justify-content: center; }

/* ======================================================================
   FORMS  (contact / start-trial / newsletter — front-end only)
   ====================================================================== */
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 40px; max-width: 640px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 500; font-size: .9rem; color: var(--navy); margin-bottom: 7px; }
.field input, .field select, .field textarea { width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--text); padding: 12px 14px; border: 2px solid var(--border); border-radius: 10px; background: #fff; transition: border-color .15s ease; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 14px; text-align: center; }
/* Inline code, for API endpoints and field names. */
code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .88em;
       background: var(--light-grey); border: 1px solid #e3e6ef; border-radius: 4px; padding: 1px 5px;
       color: var(--navy); white-space: nowrap; }

/* A left-aligned caveat note. .form-note is centred and belongs under a form;
   this is for the "worth knowing before you build" asides in body copy. */
.note { font-size: .88rem; color: var(--muted); margin-top: 14px; padding: 12px 14px;
        background: var(--light-grey); border-left: 3px solid var(--blue); border-radius: 0 4px 4px 0; }
.note strong { color: var(--navy); }

/* Embedded third-party form (Act!). The frame is cross-origin, so its interior
   is styled in Act!'s form designer -- see IMPROVEMENTS.md for the values that
   match this site. What we control is the container: strip our own padding so
   the form's own padding is the only one, and let Embed.js own the height. */
.form-embed { padding: 0; overflow: hidden; }
.form-embed iframe { display: block; width: 100%; border: 0; min-height: 420px; }

.contact-split { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.contact-info h3 { color: var(--navy); }
.contact-info .checklist svg { color: var(--blue); }

/* ======================================================================
   LEGAL / LONG-FORM PAGES  (terms, privacy)
   ====================================================================== */
.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { font-size: 1.5rem; margin-top: 2em; }
.prose h3 { margin-top: 1.5em; }
.prose p, .prose li { color: var(--text); }
.prose ul { padding-left: 1.2em; margin-bottom: 1rem; }
.prose li { margin-bottom: .5em; }
.prose .updated { color: var(--muted); font-size: .9rem; margin-bottom: 2.5em; }

/* ======================================================================
   NEWS ARTICLES
   ====================================================================== */
/* Byline under the article title. The date is the ORIGINAL publication date
   on the infinitii ai blog, not the date it was mirrored here. */
.byline { color: var(--muted); font-size: .92rem; margin-top: 16px; }
.byline b { color: var(--navy); font-weight: 600; }

.article-figure { margin: 34px 0; }
.article-figure img { display: block; width: 100%; height: auto;
                      border: 1px solid var(--border); border-radius: var(--radius); }
.article-figure figcaption { font-size: .88rem; color: var(--muted); margin-top: 10px; }

/* Republication credit. These pieces were first published on the infinitii ai
   corporate blog; the canonical link in <head> points back there. */
.republished { font-size: .9rem; color: var(--muted); margin-top: 40px;
               padding-top: 20px; border-top: 1px solid var(--border); }

/* Small helper for draft/placeholder callouts marketing should replace */
.draft-note { background: #fbf1dd; border: 1px solid #f0d79a; color: #8a6414; border-radius: 10px; padding: 12px 16px; font-size: .88rem; margin: 0 auto 28px; max-width: 780px; }

/* ======================================================================
   CTA BAND
   ====================================================================== */
.cta { background: var(--brand-gradient); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta::after { content: ""; position: absolute; right: -140px; bottom: -160px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(86,180,101,.35), transparent 62%); }
.cta h2 { color: #fff; position: relative; z-index: 1; }
.cta p { color: rgba(255,255,255,.88); max-width: 560px; margin: 0 auto 6px; position: relative; z-index: 1; }
.cta .hero-actions { justify-content: center; position: relative; z-index: 1; }
.cta .eyebrow { color: #9fd3ad; }

/* ======================================================================
   FOOTER  (markup injected by site.js)
   ====================================================================== */
.site-footer { background: var(--dark-grey); color: #c7d0dd; padding: 66px 0 28px; font-size: .94rem; }
.foot-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.1fr; gap: 40px; }
.foot-brand { font-family: var(--font-head); font-weight: 900; font-size: 1.5rem; color: #fff; display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.foot-brand .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--cyan); }
.foot-tagline { color: var(--cyan); font-family: var(--font-head); font-style: italic; font-size: .92rem; margin-bottom: 14px; }
.site-footer h4 { color: #fff; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: #c7d0dd; }
.site-footer a:hover { color: #fff; }
.foot-contact { color: #93a1b5; line-height: 1.8; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 46px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: #93a1b5; }
.foot-bottom a { color: #93a1b5; }
.social { display: flex; gap: 12px; margin-top: 18px; }
.social a { width: 38px; height: 38px; border-radius: 9px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; }
.social a:hover { background: var(--blue); }
.social svg { width: 18px; height: 18px; }

/* ======================================================================
   RESPONSIVE
   ====================================================================== */
@media (max-width: 940px) {
  .hero-grid, .split, .split--reverse .split-media { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .hero-media { max-width: 560px; }
  .grid-3, .grid-2, .quotes, .why-grid, .post-grid, .price-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .contact-split { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  /* Mobile: submenu becomes a static indented list, still click-toggled */
  .submenu { position: static; transform: none; opacity: 1; visibility: visible; min-width: 0; border: 0; box-shadow: none; padding: 4px 0 4px 14px; display: none; }
  .nav-links .has-sub.open .submenu { display: block; transform: none; }
}
@media (max-width: 620px) {
  .section { padding: 50px 0; }
  .grid-3, .grid-2, .quotes, .why-grid, .stats-grid, .foot-grid, .post-grid, .price-grid, .form-row { grid-template-columns: 1fr; }
  .nav-cta .btn--blue { display: none; }
}
