/* ============================================================
   Homepage redesign (Aug 2026) — "OnlineGrowth Forside" port.
   Loads AFTER styles.css on index.html only. styles.css keeps
   owning the shared bits (chat dock, honeypot, error text,
   range sliders, form controls); everything og-* lives here.
   ============================================================ */

/* ---- Fonts (local, subset — same approach as styles.css) ---- */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 700 800;
  font-display: swap;
  src: url("../fonts/archivo-700-latin-ext.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 700 800;
  font-display: swap;
  src: url("../fonts/archivo-700-latin.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Lora';
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  src: url("../fonts/lora-italic-400-latin-ext.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Lora';
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  src: url("../fonts/lora-italic-400-latin.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/work-sans-400-latin-ext.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/work-sans-400-latin.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---- Tokens ---- */
:root {
  --og-bg: #F5F1E7;
  --og-ink: #1C1C1A;
  --og-green: #34996B;
  --og-green-deep: #2F8F5B;
  --og-green-bright: #4CD08A;
  --og-sage: #D3E1CE;
  --og-sand: #E6C7A8;
  --og-cream: #F5F1E7;
  --og-head: 'Archivo', 'Schibsted Grotesk', system-ui, sans-serif;
  --og-serif: 'Lora', Georgia, serif;
  --og-sans: 'Work Sans', 'Schibsted Grotesk', system-ui, sans-serif;
}

body {
  background: var(--og-bg);
  color: var(--og-ink);
  font-family: var(--og-sans);
  overflow-x: hidden;
}
a { color: var(--og-green-deep); }
input[type=range] { accent-color: var(--og-green); }
input[type=range]::-webkit-slider-thumb { background: var(--og-green); border-color: var(--og-green); }
input[type=range]::-moz-range-thumb { background: var(--og-green); border-color: var(--og-green); }
:focus-visible { outline: 2px solid var(--og-green); outline-offset: 2px; }

/* ---- Shared section shell ---- */
.og-section { max-width: 1280px; margin: 0 auto; padding: clamp(44px, 6vw, 72px) clamp(20px, 6vw, 48px); }
.og-eyebrow { font-family: var(--og-serif); font-style: italic; color: var(--og-green-deep); font-size: 16px; margin-bottom: 10px; }
.og-h2 { font-family: var(--og-head); font-weight: 800; font-size: clamp(26px, 2.8vw, 34px); line-height: 1.2; margin: 0 0 12px; letter-spacing: normal; }
.og-accent { font-family: var(--og-serif); font-style: italic; font-weight: 500; color: var(--og-green); }
.og-sub { font-size: 16px; line-height: 1.6; margin: 0 0 44px; max-width: 600px; color: var(--og-ink); }
.og-btn {
  display: inline-block; background: var(--og-green); color: var(--og-cream);
  padding: 15px 26px; border-radius: 10px; font-weight: 600; font-size: 15px;
  border: none; cursor: pointer; text-decoration: none; font-family: var(--og-sans);
  transition: transform .18s ease, box-shadow .18s ease;
}
.og-btn:hover { color: var(--og-cream); transform: translateY(-2px); box-shadow: 0 14px 32px -14px var(--og-green); }
.og-btn-dark { background: var(--og-ink); }
.og-btn-dark:hover { box-shadow: 0 14px 32px -14px var(--og-ink); }

/* ---- Hero (dark, video background) ---- */
.og-hero-wrap { position: relative; background: var(--og-ink); overflow: hidden; }
.og-hero-media { position: absolute; inset: 0; }
.og-hero-media img, .og-hero-media video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.og-hero-media video { opacity: 0; transition: opacity .6s ease; }
.og-hero-media video.is-playing { opacity: 1; }
.og-hero-scrim { position: absolute; inset: 0; background: rgba(28, 28, 26, 0.6); }

.og-header {
  position: relative; display: flex; justify-content: space-between; align-items: center;
  padding: 16px clamp(20px, 5vw, 48px); max-width: 1360px; margin: 0 auto; gap: 16px;
}
.og-logo { display: flex; align-items: center; }
.og-logo img { height: clamp(60px, 16vw, 110px); width: auto; margin-left: clamp(0px, 2vw, 24px); display: block; }
.og-nav { display: flex; gap: clamp(14px, 3vw, 30px); font-size: 15px; font-weight: 500; flex-wrap: wrap; }
.og-nav a { color: var(--og-cream); text-decoration: none; }
.og-nav a:hover, .og-nav a.accent { color: var(--og-green-bright); }
.og-header .lang-toggle { display: flex; gap: 4px; background: transparent; border: 1px solid #F5F1E733; border-radius: 999px; padding: 3px; }
.og-header .lang-toggle button {
  background: none; border: none; color: #F5F1E799; font-size: 13px; font-weight: 600;
  padding: 4px 10px; border-radius: 999px; cursor: pointer; font-family: inherit;
}
.og-header .lang-toggle button.active { background: var(--og-green); color: var(--og-cream); }
.og-burger {
  display: none; background: none; border: none; padding: 8px; margin: 0; cursor: pointer;
  flex-direction: column; gap: 5px;
}
.og-burger span { width: 22px; height: 2px; background: var(--og-cream); display: block; transition: transform .2s ease, opacity .2s ease; }
.og-mobile-menu {
  position: relative; z-index: 2; display: none; flex-direction: column;
  background: var(--og-ink); padding: 4px clamp(20px, 6vw, 48px) 20px;
}
.og-mobile-menu.open { display: flex; }
.og-mobile-menu a {
  color: var(--og-cream); padding: 12px 0; font-size: 15px; font-weight: 500;
  text-decoration: none; border-bottom: 1px solid #F5F1E722;
}
.og-mobile-menu a:last-child { border-bottom: none; }

.og-hero { position: relative; padding: clamp(56px, 9.7vw, 83px) clamp(20px, 6vw, 48px) 0; }
.og-hero-inner { position: relative; max-width: 1280px; margin: 0 auto; padding-bottom: clamp(50px, 12.5vw, 111px); }
.og-hero-copy { max-width: 640px; }
.og-hero h1 {
  font-family: var(--og-head); font-weight: 800; font-size: clamp(38px, 4.8vw, 58px);
  line-height: 1.06; margin: 0 0 22px; color: var(--og-cream);
}
.og-hero-sub { font-size: 19px; line-height: 1.6; max-width: 520px; margin: 0 0 32px; color: #F5F1E7CC; }

/* ---- Interest picker ---- */
.og-picker-section { max-width: 900px; margin: 0 auto; padding: clamp(44px, 6vw, 72px) clamp(20px, 6vw, 48px) 0; }
.og-picker { position: relative; background: var(--og-sage); border-radius: 24px; padding: clamp(28px, 5vw, 48px); overflow: hidden; }
.og-picker-lines { position: absolute; inset: 0; opacity: 0.18; pointer-events: none; width: 100%; height: 100%; }
.og-picker-inner { position: relative; }
.og-picker h2 {
  font-family: var(--og-head); font-weight: 800; font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.3; margin: 0 0 28px; text-align: center;
}
.og-picker h2 .u { border-bottom: 3px solid var(--og-green); font-family: inherit; font-style: normal; color: inherit; }
.og-picker-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-bottom: 28px; }
.og-pick {
  display: flex; align-items: center; gap: 8px; background: #fff; border: 1.5px solid transparent;
  border-radius: 12px; padding: 12px; cursor: pointer; min-width: 0;
}
.og-pick.selected { border-color: var(--og-green); }
.og-pick input { width: 17px; height: 17px; accent-color: var(--og-green); flex-shrink: 0; margin: 0; }
.og-pick span { font-weight: 600; font-size: 13px; line-height: 1.25; color: var(--og-ink); min-width: 0; overflow-wrap: break-word; }
.og-picker-cta { display: flex; justify-content: center; }

/* ---- Services pills ---- */
.og-pills-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
.og-pills-col h3 { font-family: var(--og-head); font-weight: 700; font-size: 19px; margin: 0 0 12px; }
.og-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.og-pill {
  display: inline-block; border: 1px solid #1C1C1A33; color: var(--og-ink);
  padding: 9px 16px; border-radius: 999px; font-size: 14px; text-decoration: none;
}
a.og-pill:hover { border-color: var(--og-green); color: var(--og-green-deep); }

/* ---- About / backstory ---- */
.og-about-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(32px, 6vw, 56px); align-items: center;
}
.og-about-img { position: relative; border-radius: 28px 60px 28px 28px; overflow: hidden; }
.og-about-img img { width: 100%; display: block; object-fit: cover; aspect-ratio: 5/4; }
.og-about-img::after { content: ''; position: absolute; inset: 0; background: rgba(58, 74, 58, 0.18); }
.og-about-list { font-size: 17px; line-height: 1.8; margin: 0 0 24px; }
.og-about-cta { font-weight: 600; font-size: 15px; text-decoration: none; }

/* ---- Numbered fields on watercolor ---- */
.og-fields-card {
  border-radius: 24px; overflow: hidden;
  background-image: url('../assets/home/watercolor.webp');
  background-size: cover; background-position: center;
  background-color: var(--og-sage);
  padding: clamp(35px, 6.25vw, 60px);
}
.og-fields-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 64px); }
.og-field-num { font-family: var(--og-serif); font-style: italic; color: var(--og-green-deep); font-size: 14px; margin-bottom: 4px; }
.og-field h3 { font-family: var(--og-head); font-weight: 800; font-size: 25px; margin: 0 0 18px; line-height: 1.25; }
.og-field p { font-size: 15px; line-height: 1.65; margin: 0; color: var(--og-ink); }

/* ---- Team ---- */
.og-team-head {
  font-family: var(--og-head); font-weight: 800; font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.08; margin: 0 0 20px; max-width: 720px; letter-spacing: normal;
}
.og-team-intro { font-size: 17px; line-height: 1.6; max-width: 600px; margin: 0 0 clamp(32px, 5vw, 52px); }
.og-team-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.og-member-photo { border-radius: 14px; overflow: hidden; aspect-ratio: 1/1; margin-bottom: 14px; background: var(--og-sage); }
.og-member-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.og-member-name { font-weight: 700; font-size: 15px; }
.og-member-role { font-family: var(--og-serif); font-style: italic; color: var(--og-green-deep); font-size: 13px; }
.og-member-spec { font-size: 13px; color: #1C1C1A99; }

/* ---- Why us ---- */
.og-why-head {
  font-family: var(--og-head); font-weight: 800; font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15; margin: 0 0 clamp(28px, 4vw, 44px); max-width: 680px;
}
.og-reasons { border-top: 1px solid #1C1C1A22; }
.og-reason {
  display: grid; grid-template-columns: 56px minmax(200px, 320px) 1fr;
  gap: 8px 24px; align-items: baseline; padding: 28px 0; border-bottom: 1px solid #1C1C1A22;
}
.og-reason img { width: 26px; height: auto; align-self: center; }
.og-reason h3 { font-family: var(--og-head); font-weight: 800; font-size: 19px; margin: 0; }
.og-reason p { font-size: 15px; line-height: 1.65; margin: 0; color: var(--og-ink); max-width: 560px; }
.og-why-cta { display: flex; justify-content: center; margin-top: clamp(32px, 5vw, 44px); }

/* ---- Calculator (sage band) ---- */
.og-calc-band { background: var(--og-sage); padding: clamp(44px, 6vw, 72px) clamp(20px, 6vw, 48px); }
.og-calc-band .og-eyebrow { color: var(--og-ink); }
.og-calc-inner { max-width: 1280px; margin: 0 auto; }
.og-calc {
  background: var(--og-cream); border-radius: 24px; padding: clamp(24px, 5vw, 44px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(28px, 5vw, 48px);
}
.og-calc-sliders { display: flex; flex-direction: column; gap: 28px; }
.og-calc-row { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.og-calc input[type=range] { width: 100%; display: block; }
.og-calc-result {
  background: var(--og-ink); border-radius: 18px; padding: 32px; color: var(--og-cream);
  display: flex; flex-direction: column; justify-content: center; gap: 18px;
}
.og-calc-result-eyebrow { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: #F5F1E799; }
.og-calc-hours { font-family: var(--og-head); font-weight: 800; font-size: 40px; line-height: 1; }
.og-calc-cost { font-family: var(--og-head); font-weight: 800; font-size: 32px; line-height: 1; color: var(--og-green-bright); }
.og-calc-unit { font-size: 14px; color: #F5F1E799; margin-top: 4px; }

/* ---- Dottie ---- */
.og-dottie-card {
  position: relative; background: var(--og-sage); border-radius: 32px 32px 90px 32px;
  padding: clamp(28px, 6vw, 56px); display: flex; justify-content: flex-end;
  overflow: hidden; min-height: 440px;
}
.og-dottie-bg {
  position: absolute; left: 0; top: 0; width: 44%; height: 100%;
  -webkit-mask-image: linear-gradient(90deg, #000 65%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 65%, transparent 100%);
}
.og-dottie-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; transition: opacity .5s ease; }
/* Live 3D robot replaces the static photo once Three.js has mounted. */
.og-dottie-bg.live { -webkit-mask-image: none; mask-image: none; }
.og-dottie-bg.live img { opacity: 0; }
#dottie-robot-mount { position: absolute; inset: 0; }
#dottie-robot-mount canvas { display: block; width: 100%; height: 100%; }
.og-dottie-bubble {
  position: absolute; left: 22%; top: 34px; transform: translateX(-50%) translateY(6px) scale(0.96);
  z-index: 2; max-width: 250px; background: #fff; color: var(--og-ink);
  border-radius: 14px; padding: 10px 14px; font-size: 13px; line-height: 1.5;
  box-shadow: 0 10px 30px -12px rgba(28, 28, 26, 0.35);
  opacity: 0; transition: opacity .25s ease, transform .25s ease; pointer-events: none;
}
.og-dottie-bubble.show { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
.og-dottie-bubble::after {
  content: ''; position: absolute; left: 50%; bottom: -6px; transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px; background: #fff;
}
.og-dottie-spacer { flex: 0 0 44%; }
.og-dottie-copy { position: relative; z-index: 1; max-width: 560px; }
.og-dottie-copy p { font-size: 17px; line-height: 1.65; margin: 0 0 16px; max-width: 560px; }
.og-chat-preview { background: var(--og-cream); border-radius: 18px; padding: 20px; max-width: 400px; margin: 12px 0 28px; }
.og-chat-preview-head { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.og-chat-preview-avatar {
  width: 26px; height: 26px; border-radius: 999px; background: var(--og-green);
  display: flex; align-items: center; justify-content: center;
}
.og-chat-preview-avatar span { width: 6px; height: 6px; border-radius: 999px; background: var(--og-green-bright); }
.og-chat-preview-name { font-weight: 700; font-size: 14px; }
.og-chat-preview-meta { font-size: 12px; color: #1C1C1A80; }
.og-chat-preview-msg { background: #fff; border-radius: 12px; padding: 12px 14px; font-size: 13px; line-height: 1.5; margin-bottom: 10px; }
.og-chat-preview-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.og-chat-preview-chips span { border: 1px solid #1C1C1A22; border-radius: 999px; padding: 6px 12px; font-size: 12px; }

/* ---- Tools ---- */
.og-tools-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.og-tool { background: #fff; border-radius: 18px; padding: 26px; display: flex; flex-direction: column; gap: 10px; }
.og-tool-cat { font-family: var(--og-serif); font-style: italic; color: var(--og-green-deep); font-size: 13px; }
.og-tool h3 { font-family: var(--og-head); font-weight: 800; font-size: 19px; margin: 0; }
.og-tool p { font-size: 14px; line-height: 1.55; margin: 0; color: var(--og-ink); }
.og-tool-stat { font-size: 12px; color: #1C1C1A80; margin-top: auto; padding-top: 8px; }
.og-tool-link { font-size: 13px; font-weight: 600; text-decoration: none; }

/* ---- Clients ---- */
.og-clients-band { background: #fff; padding: clamp(48px, 7vw, 72px) clamp(20px, 6vw, 48px); }
.og-clients-inner { max-width: 1280px; margin: 0 auto; }
.og-clients-head {
  font-family: var(--og-head); font-weight: 800; font-size: clamp(22px, 2.4vw, 28px);
  text-align: center; margin: 0 0 clamp(32px, 5vw, 44px);
}
.og-clients-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.og-clients-grid > div { display: flex; align-items: center; justify-content: center; height: 88px; }
/* Logos are pre-baked onto uniform 360x160 canvases in the same ink colour,
   so every mark renders at identical size - just scale the canvas. */
.og-clients-grid img { width: 240px; max-width: 100%; height: auto; object-fit: contain; }

/* ---- Testimonials ---- */
.og-tests-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; align-items: stretch; }
.og-test { background: #fff; border-radius: 20px; padding: 28px; display: flex; flex-direction: column; margin: 0; }
.og-test blockquote { font-size: 15px; line-height: 1.65; margin: 0 0 20px; color: var(--og-ink); flex: 1; }
.og-test figcaption {
  padding-top: 14px; border-top: 1px solid #1C1C1A14;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.og-test-logo { height: 64px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.og-test-logo img { max-height: 100%; max-width: 240px; width: auto; object-fit: contain; }
.og-test-name { font-weight: 700; font-size: 14px; }
.og-test-role { font-size: 13px; color: #1C1C1A80; }

/* ---- Contact ---- */
.og-contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(28px, 6vw, 48px); }
.og-contact-links { display: flex; flex-direction: column; gap: 20px; font-size: 16px; }
.og-contact-links a { font-weight: 500; text-decoration: none; }
#contact .contact-form {
  background: #fff; border-radius: 20px; padding: clamp(22px, 4vw, 32px);
  display: flex; flex-direction: column; gap: 14px;
}
#contact .contact-form input, #contact .contact-form textarea {
  padding: 13px 16px; border-radius: 10px; border: 1px solid #1C1C1A22;
  font-size: 14px; background: #fff; color: var(--og-ink);
}
#contact .contact-form input:focus, #contact .contact-form textarea:focus { border-color: var(--og-green); }
#contact .chip { background: #fff; border: 1px solid #1C1C1A33; color: var(--og-ink); border-radius: 999px; }
#contact .chip.selected { border-color: var(--og-green); color: var(--og-green-deep); }
#contact .form-submit.og-btn { margin-top: 4px; }
#contact .form-thanks { background: #fff; border-radius: 20px; padding: 32px; }

/* ---- Visit ---- */
.og-visit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; align-items: stretch; }
.og-visit-card {
  position: relative; background: var(--og-ink); border-radius: 20px; padding: 32px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 24px; overflow: hidden;
}
.og-visit-lines { position: absolute; left: 0; bottom: 0; width: 100%; height: 100%; opacity: 0.15; pointer-events: none; }
.og-visit-logo { position: relative; flex: 1; display: flex; align-items: center; justify-content: center; min-height: 120px; }
.og-visit-logo img { width: 100%; max-width: 180px; height: auto; }
.og-visit-info { position: relative; }
.og-visit-info .og-eyebrow { color: var(--og-green-bright); font-size: 14px; margin-bottom: 6px; }
.og-visit-addr { font-size: 18px; font-weight: 700; line-height: 1.4; color: var(--og-cream); }
.og-visit-dir { display: inline-block; margin-top: 14px; font-weight: 600; font-size: 14px; color: var(--og-green-bright); text-decoration: none; }
.og-visit-map { border-radius: 20px; overflow: hidden; min-height: 260px; position: relative; display: block; }
.og-visit-map img { width: 100%; height: 100%; object-fit: cover; display: block; position: absolute; inset: 0; }
.og-visit-map .visit-map-attr {
  position: absolute; right: 8px; bottom: 6px; font-size: 11px; color: #1C1C1A99;
  background: #F5F1E7CC; padding: 1px 6px; border-radius: 4px;
}

/* ---- FAQ ---- */
.og-faq-section { max-width: 840px; margin: 0 auto; padding: clamp(44px, 6vw, 72px) clamp(20px, 6vw, 48px); }
.og-faq-section .og-h2 { margin-bottom: 30px; }
.og-faq-item { border-bottom: 1px solid #1C1C1A22; }
.og-faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  background: none; border: none; cursor: pointer; text-align: left; padding: 20px 0;
  font-family: var(--og-head); font-weight: 700; font-size: 17px; color: var(--og-ink);
}
.og-faq-icon { font-size: 20px; color: var(--og-green-deep); flex-shrink: 0; }
.og-faq-a { display: none; padding: 0 0 20px; font-size: 15px; line-height: 1.65; color: var(--og-ink); max-width: 680px; }
.og-faq-a p { margin: 0; }
.og-faq-item.open .og-faq-a { display: block; }

/* ---- Newsletter (dark band) ---- */
.og-nl-band { position: relative; background: var(--og-ink); color: var(--og-cream); padding: clamp(44px, 6vw, 72px) clamp(20px, 6vw, 48px); overflow: hidden; }
.og-nl-lines { position: absolute; inset: 0; opacity: 0.15; pointer-events: none; width: 100%; }
.og-nl-inner { position: relative; max-width: 640px; margin: 0 auto; text-align: center; }
.og-nl-inner .og-eyebrow { color: var(--og-green-bright); font-size: 14px; margin-bottom: 8px; }
.og-nl-head { font-family: var(--og-head); font-weight: 800; font-size: 30px; margin: 0 0 12px; }
.og-nl-sub { font-size: 15px; line-height: 1.6; margin: 0 0 26px; color: #F5F1E7CC; }
.og-nl-band .nl-form { max-width: 460px; margin: 0 auto; }
.og-nl-band .nl-row { display: flex; gap: 10px; flex-wrap: wrap; }
.og-nl-band .nl-row input {
  flex: 1; min-width: 180px; padding: 13px 16px; border-radius: 10px; border: none;
  font-size: 14px; background: #fff; color: var(--og-ink);
}
.og-nl-band .nl-check { display: flex; gap: 8px; align-items: flex-start; margin-top: 14px; font-size: 13px; color: #F5F1E7CC; text-align: left; }
.og-nl-band .nl-check input { accent-color: var(--og-green); margin-top: 2px; }
.og-nl-band .nl-check a { color: var(--og-green-bright); }
.og-nl-band .nl-consent { font-size: 12px; color: #F5F1E799; margin-top: 14px; }
.og-nl-band .nl-thanks { display: flex; gap: 10px; align-items: center; justify-content: center; font-weight: 600; }
.og-nl-band .nl-thanks-check { color: var(--og-green-bright); }
.og-nl-band .nl-error { margin-top: 12px; }

/* ---- Footer (dark) ---- */
.og-footer { background: var(--og-ink); color: var(--og-cream); padding: clamp(40px, 8vw, 60px) clamp(20px, 6vw, 48px) 30px; }
.og-footer-inner {
  max-width: 1280px; margin: 0 auto; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: clamp(24px, 5vw, 40px);
  padding-bottom: 36px; border-bottom: 1px solid #F5F1E722;
}
.og-footer-brand img { height: clamp(70px, 20vw, 110px); width: auto; margin: 0 auto 8px; display: block; }
.og-footer-tag { font-size: 14px; color: #F5F1E799; text-align: center; }
.og-footer-col-title { font-size: 13px; color: #F5F1E799; margin: 0 0 10px; }
.og-footer-col-title + .og-footer-col-title, .og-footer a + .og-footer-col-title { margin-top: 14px; }
.og-footer-col a { display: block; color: var(--og-cream); font-size: 14px; margin-bottom: 8px; text-decoration: none; }
.og-footer-col a:hover { color: var(--og-green-bright); }
.og-footer-rights { max-width: 1280px; margin: 0 auto; padding-top: 20px; font-size: 13px; color: #F5F1E799; }
/* NO-only footer links disappear on the English version (no EN target pages). */
body[data-lang="en"] [data-no-only] { display: none; }

/* ---- Responsive ---- */
@media (min-width: 900px) {
  .og-tools-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .og-nav { display: none; }
  .og-burger { display: flex; }
  .og-header { display: grid; grid-template-columns: auto 1fr auto; align-items: center; }
  .og-header .og-logo { justify-self: center; }
  .og-tools-grid { grid-template-columns: 1fr; }
  .og-picker-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  /* The long "Automatisering / Digitalisering" chip gets the full row on mobile. */
  .og-picker-grid .og-pick:last-child { grid-column: 1 / -1; }
  .og-pick { padding: 10px; }
  .og-pick span { font-size: 12px; }
  .og-fields-grid { grid-template-columns: 1fr; gap: 40px; }
  .og-team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .og-clients-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .og-reason { grid-template-columns: 1fr; }
  .og-reason img { display: none; }
  .og-reason p { margin-top: 8px; }
  .og-dottie-card { flex-direction: column; padding-top: 200px; }
  .og-dottie-bg {
    width: 100%; height: 200px; top: 0;
    -webkit-mask-image: linear-gradient(180deg, #000 65%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 65%, transparent 100%);
  }
  .og-dottie-bubble { left: 50%; top: 18px; max-width: 220px; }
  .og-dottie-spacer { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .og-hero-media video { display: none; }
  .og-btn { transition: none; }
}
