/*
Theme Name: Be Online
Theme URI: https://beonline.gr/
Author: Be Online
Author URI: https://beonline.gr/
Description: Performance-first one-page WordPress theme for Be Online. Websites, eShops, automations, technical support and SEO.
Version: 1.0.0
Requires at least: 6.2
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: be-online
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-logo, custom-menu, featured-images, one-column, responsive-layout, accessibility-ready
*/

/* Be Online — landing page
   Performance-first: no external fonts, no framework, transform-only motion. */

:root {
  --ink: #111310;
  --ink-soft: #1a1d19;
  --paper: #f4f3ed;
  --paper-2: #ecebe4;
  --white: #fffef9;
  --muted: #6f736b;
  --line: rgba(17, 19, 16, 0.14);
  --lime: #c8ff4c;
  --lime-strong: #b9f32e;
  --violet: #776df4;
  --orange: #ff7348;
  --shell: min(1240px, calc(100vw - 64px));
  --radius-sm: 16px;
  --radius: 26px;
  --radius-lg: 38px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow: 0 24px 80px rgba(13, 16, 12, .11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img, svg { display: block; max-width: 100%; }
::selection { color: var(--ink); background: var(--lime); }

.skip-link {
  position: fixed;
  z-index: 200;
  top: 14px;
  left: 14px;
  padding: 10px 15px;
  border-radius: 10px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }
.shell { width: var(--shell); margin-inline: auto; }
.page-noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .023;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

/* Type */
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.045em; }
h2 { font-size: clamp(3rem, 6.25vw, 6rem); line-height: .98; font-weight: 720; }
h2 em, h1 em { font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
p { color: var(--muted); }
.kicker {
  display: inline-block;
  margin-bottom: 28px;
  color: #5f635b;
  font-size: .73rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .14em;
}
.kicker-light { color: rgba(255,255,255,.55); }
.section { padding: 150px 0; }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .55fr);
  align-items: end;
  gap: 90px;
  margin-bottom: 68px;
}
.section-heading h2 { margin-bottom: 0; }
.section-heading p { margin: 0 0 8px; max-width: 500px; font-size: 1.08rem; }

/* Common interactions */
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 750;
  letter-spacing: -.015em;
  transition: color .3s, background .3s, transform .3s var(--ease), box-shadow .3s;
}
.button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.button-primary { color: var(--ink); background: var(--lime); box-shadow: 0 8px 30px rgba(190, 255, 58, .18); }
.button-primary:hover { background: var(--lime-strong); box-shadow: 0 12px 40px rgba(190, 255, 58, .25); transform: translateY(-2px); }
.button-light { color: var(--ink); background: var(--white); }
.button-light:hover { background: var(--lime); transform: translateY(-2px); }
.text-link {
  display: inline-flex;
  position: relative;
  align-items: center;
  gap: 10px;
  padding-block: 6px;
  font-weight: 750;
}
.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  transform-origin: right;
  transition: transform .35s var(--ease);
}
.text-link:hover::after { transform: scaleX(.35); }

/* Header */
.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 0;
  transition: padding .35s var(--ease), transform .4s var(--ease);
}
.site-header.scrolled { padding: 10px 0; }
.nav {
  display: flex;
  height: 66px;
  align-items: center;
  padding: 8px 8px 8px 18px;
  border: 1px solid rgba(17,19,16,.08);
  border-radius: 999px;
  background: rgba(250, 249, 244, .78);
  box-shadow: 0 8px 36px rgba(20, 23, 18, .06);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: background .3s, box-shadow .3s;
}
.site-header.scrolled .nav { background: rgba(250, 249, 244, .92); box-shadow: 0 12px 42px rgba(20, 23, 18, .1); }
.brand { display: inline-flex; position: relative; z-index: 4; align-items: center; gap: 10px; font-size: 1.06rem; font-weight: 850; letter-spacing: -.04em; }
.brand-mark { width: 38px; color: var(--lime); }
.nav-links { display: flex; align-items: center; gap: clamp(22px, 3vw, 42px); margin: 0 auto; }
.nav-links a { position: relative; color: #454941; font-size: .9rem; font-weight: 700; }
.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1.5px;
  background: var(--ink);
  transform: scaleX(0);
  transition: transform .3s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }
.button-nav { min-height: 48px; padding-inline: 20px; color: #fff; background: var(--ink); font-size: .88rem; }
.button-nav:hover { color: var(--ink); background: var(--lime); }
.button-nav svg { width: 17px; }
.menu-toggle { display: none; }

/* Hero */
.hero {
  position: relative;
  min-height: min(920px, 100svh);
  padding: 145px 0 70px;
  overflow: hidden;
  background:
    linear-gradient(rgba(22,24,20,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,24,20,.045) 1px, transparent 1px),
    var(--paper);
  background-size: 70px 70px;
  background-position: center;
}
.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 180px;
  background: linear-gradient(transparent, var(--paper));
  pointer-events: none;
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(10px); pointer-events: none; }
.hero-glow-one { top: -180px; right: 10%; width: 540px; height: 540px; background: rgba(199,255,71,.22); }
.hero-glow-two { bottom: 5%; left: -220px; width: 420px; height: 420px; background: rgba(119,109,244,.12); }
.hero-grid { display: grid; position: relative; z-index: 2; grid-template-columns: minmax(450px, .93fr) minmax(470px, .92fr); align-items: center; gap: 65px; min-height: 670px; }
.hero-copy { position: relative; z-index: 3; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.46);
  color: #52564e;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.status-dot { position: relative; width: 7px; height: 7px; border-radius: 50%; background: #6fae28; box-shadow: 0 0 0 4px rgba(111,174,40,.13); }
.status-dot::after { content: ""; position: absolute; inset: -4px; border: 1px solid #73b42d; border-radius: 50%; animation: ping 2s infinite; }
.hero h1 { max-width: 700px; margin-bottom: 30px; font-size: clamp(4.05rem, 6.35vw, 7rem); line-height: .9; font-weight: 760; letter-spacing: -.068em; }
.heading-accent { position: relative; z-index: 0; font-family: Georgia, "Times New Roman", serif; font-style: italic; font-weight: 400; letter-spacing: -.055em; }
.heading-accent::after { content: ""; position: absolute; z-index: -1; right: -5px; bottom: 7px; left: -3px; height: 20%; background: var(--lime); transform: rotate(-1deg); }
.hero-lead { max-width: 610px; margin-bottom: 34px; color: #5c6058; font-size: clamp(1.05rem, 1.5vw, 1.2rem); }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-bottom: 54px; }
.hero-proof { display: flex; align-items: center; gap: 22px; }
.proof-item { display: grid; gap: 0; }
.proof-item strong { font-size: 1.15rem; letter-spacing: -.035em; }
.proof-item span { color: #7b7e77; font-size: .75rem; white-space: nowrap; }
.proof-divider { width: 1px; height: 32px; background: var(--line); }
.scroll-cue {
  display: flex;
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 50%;
  align-items: center;
  gap: 9px;
  color: #8c8e87;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.scroll-cue span { display: block; position: relative; width: 1px; height: 32px; overflow: hidden; background: rgba(17,19,16,.12); }
.scroll-cue span::after { content: ""; position: absolute; top: -100%; left: 0; width: 100%; height: 100%; background: var(--ink); animation: scrollCue 2s infinite; }

/* Dashboard illustration */
.hero-stage { position: relative; min-height: 630px; perspective: 1200px; }
.dashboard-card {
  position: absolute;
  z-index: 3;
  top: 100px;
  right: 3%;
  width: min(560px, 92%);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  background: #171a17;
  box-shadow: 0 42px 100px rgba(16,18,15,.28), 0 2px 1px rgba(255,255,255,.08) inset;
  color: #fff;
  transform: rotateY(-6deg) rotateX(2deg);
  transform-style: preserve-3d;
  transition: transform .25s ease-out;
}
.dashboard-topbar { display: flex; height: 49px; align-items: center; padding: 0 17px; border-bottom: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.38); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .64rem; }
.window-dots { display: flex; gap: 5px; margin-right: 14px; }
.window-dots i { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.25); }
.live-label { display: flex; align-items: center; gap: 5px; margin-left: auto; color: #a9cf6b; }
.live-label i { width: 5px; height: 5px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 8px var(--lime); }
.dashboard-body { padding: 27px; }
.dashboard-title-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; }
.dashboard-title-row small { color: rgba(255,255,255,.42); font-size: .7rem; }
.dashboard-title-row h2 { margin: 3px 0 0; font-size: 1.55rem; line-height: 1.1; letter-spacing: -.035em; }
.score-ring {
  display: grid;
  position: relative;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--lime) 0 95%, rgba(255,255,255,.1) 95%);
}
.score-ring::before { content: ""; position: absolute; width: 46px; height: 46px; border-radius: 50%; background: #171a17; }
.score-ring span { position: relative; font-size: .88rem; font-weight: 800; }
.chart { position: relative; height: 152px; margin: 10px 0 20px; overflow: hidden; border-radius: 13px; background: rgba(255,255,255,.025); }
.chart-grid { position: absolute; inset: 0; background: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 100% 38px, 73px 100%; }
.chart svg { position: absolute; right: 0; bottom: 0; left: 0; width: 100%; height: 128px; overflow: visible; }
.line-path { fill: none; stroke: var(--lime); stroke-width: 2.2; stroke-linecap: round; vector-effect: non-scaling-stroke; stroke-dasharray: 700; stroke-dashoffset: 700; animation: drawLine 2s .8s var(--ease) forwards; }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.metric-card { display: grid; grid-template-columns: 31px 1fr; align-items: center; padding: 12px; border: 1px solid rgba(255,255,255,.065); border-radius: 12px; background: rgba(255,255,255,.035); }
.metric-card > span:not(.metric-icon) { color: rgba(255,255,255,.38); font-size: .6rem; }
.metric-card strong { grid-column: 2; font-size: .78rem; }
.metric-icon { display: grid; grid-row: 1 / span 2; width: 25px; height: 25px; place-items: center; border-radius: 7px; color: var(--ink); font-size: .75rem; font-weight: 900; }
.metric-icon-lime { background: var(--lime); }
.metric-icon-violet { background: #968df9; }
.metric-icon-orange { background: var(--orange); }
.floating-pill { display: flex; position: absolute; z-index: 5; align-items: center; gap: 11px; padding: 11px 15px; border: 1px solid rgba(17,19,16,.09); border-radius: 14px; background: rgba(255,255,255,.92); box-shadow: 0 18px 50px rgba(15,18,14,.13); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); animation: float 5s var(--ease) infinite; }
.floating-pill > span:not(.pill-icon) { display: grid; }
.floating-pill small { color: #7d8178; font-size: .6rem; }
.floating-pill strong { font-size: .78rem; }
.floating-pill b { color: #4d8c0b; }
.pill-icon { display: grid; width: 31px; height: 31px; place-items: center; border-radius: 8px; background: #f1f1ee; color: #4776e6; font-family: Georgia, serif; font-weight: 900; }
.pill-seo { top: 55px; right: 0; }
.pill-speed { bottom: 70px; left: -8px; animation-delay: -2s; }
.pill-speed svg { width: 29px; height: 29px; padding: 5px; border-radius: 8px; background: var(--lime); fill: none; stroke: var(--ink); stroke-width: 1.7; }
.orbit { position: absolute; border: 1px solid rgba(17,19,16,.09); border-radius: 50%; }
.orbit-one { top: 20px; right: -40px; width: 560px; height: 560px; animation: orbitRotate 25s linear infinite; }
.orbit-one::after { content: ""; position: absolute; top: 48%; left: -4px; width: 8px; height: 8px; border-radius: 50%; background: var(--violet); }
.orbit-two { top: 132px; right: 80px; width: 360px; height: 360px; animation: orbitRotate 18s linear infinite reverse; }
.orbit-two::after { content: ""; position: absolute; top: -5px; left: 48%; width: 9px; height: 9px; border-radius: 50%; background: var(--lime-strong); }
.stage-spark { position: absolute; color: #999d94; animation: spin 10s linear infinite; }
.spark-one { top: 50px; left: 20px; font-size: 1.5rem; }
.spark-two { right: 10px; bottom: 115px; font-size: .9rem; animation-direction: reverse; }

/* Ticker */
.ticker-section { position: relative; z-index: 3; overflow: hidden; border-block: 1px solid rgba(255,255,255,.06); background: var(--ink); color: #fff; transform: rotate(-1.25deg) scale(1.02); }
.ticker-track { display: flex; width: max-content; padding: 18px 0; animation: ticker 28s linear infinite; }
.ticker-content { display: flex; align-items: center; }
.ticker-content span { padding: 0 27px; font-size: .76rem; font-weight: 800; letter-spacing: .16em; }
.ticker-content i { color: var(--lime); font-style: normal; font-size: .7rem; }

/* Services */
.services { padding-top: 170px; }
.services-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.service-card {
  display: flex;
  position: relative;
  min-height: 500px;
  flex-direction: column;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(17,19,16,.08);
  border-radius: var(--radius);
  background: #ebeae3;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s;
}
.service-card:hover { z-index: 2; border-color: rgba(17,19,16,.18); box-shadow: var(--shadow); transform: translateY(-7px); }
.service-card-wide { grid-column: span 2; min-height: 430px; }
.service-card-head { display: flex; position: relative; z-index: 3; align-items: flex-start; justify-content: space-between; }
.service-number { color: #7d8079; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .72rem; }
.service-icon { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(17,19,16,.11); border-radius: 50%; }
.service-icon svg { width: 25px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.45; }
.service-copy { position: relative; z-index: 3; max-width: 510px; margin-top: auto; }
.service-copy h3 { margin-bottom: 11px; font-size: clamp(1.85rem, 3vw, 2.65rem); line-height: 1; }
.service-copy p { max-width: 530px; margin-bottom: 22px; font-size: .98rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: 7px; margin: 0; padding: 0; list-style: none; }
.tag-list li { padding: 7px 11px; border: 1px solid rgba(17,19,16,.11); border-radius: 999px; color: #555951; font-size: .67rem; font-weight: 750; }
.service-card-wide .service-copy { max-width: 47%; }
.service-card-wide .service-card-head { width: 100%; }
.web-visual { position: absolute; top: 70px; right: 3%; width: 47%; height: 280px; }
.mini-browser { position: absolute; top: 5px; right: 0; width: 93%; overflow: hidden; border: 1px solid rgba(17,19,16,.16); border-radius: 15px; background: #f8f8f4; box-shadow: 0 23px 55px rgba(20,22,18,.13); transform: rotate(1.8deg); transition: transform .6s var(--ease); }
.service-card:hover .mini-browser { transform: rotate(-.5deg) translateY(-6px); }
.mini-browser-bar { display: flex; height: 31px; align-items: center; gap: 4px; padding: 0 9px; border-bottom: 1px solid var(--line); background: #e6e5df; }
.mini-browser-bar i { width: 5px; height: 5px; border-radius: 50%; background: #b9bbb4; }
.mini-browser-bar span { width: 44%; height: 8px; margin: 0 auto; border-radius: 10px; background: rgba(17,19,16,.07); }
.mini-browser-page { position: relative; height: 225px; padding: 18px; overflow: hidden; background: linear-gradient(135deg, #f7f6f1 55%, #d8ff7e 55%); }
.mini-nav { width: 45px; height: 8px; margin-bottom: 35px; border-radius: 8px; background: var(--ink); }
.mini-hero-line { height: 16px; margin-bottom: 7px; border-radius: 4px; background: var(--ink); }
.mini-hero-line.one { width: 44%; }
.mini-hero-line.two { width: 34%; }
.mini-button { width: 70px; height: 20px; margin-top: 15px; border-radius: 999px; background: var(--violet); }
.mini-cards { display: flex; position: absolute; right: 16px; bottom: 17px; left: 50%; gap: 6px; }
.mini-cards i { width: 33.33%; height: 45px; border: 1px solid rgba(17,19,16,.1); border-radius: 5px; background: rgba(255,255,255,.5); }
.cursor-chip { position: absolute; right: 26%; bottom: 9px; padding: 8px 10px; border-radius: 4px 11px 11px 11px; background: var(--violet); color: #fff; font-size: .59rem; font-weight: 800; box-shadow: 0 6px 20px rgba(76,63,208,.25); animation: cursorMove 5s var(--ease) infinite; }
.cursor-chip span { margin-left: 5px; }
.flow-visual { display: flex; position: absolute; top: 120px; right: 10%; left: 10%; align-items: center; justify-content: center; }
.flow-node { display: grid; position: relative; z-index: 2; min-width: 70px; height: 40px; place-items: center; padding-inline: 11px; border: 1px solid rgba(17,19,16,.15); border-radius: 10px; background: #f8f7f2; font-size: .65rem; font-weight: 800; box-shadow: 0 8px 22px rgba(17,19,16,.08); }
.flow-center { min-width: 54px; width: 54px; height: 54px; margin-inline: 36px; border: 0; border-radius: 18px; background: var(--violet); color: #fff; font-size: 1rem; box-shadow: 0 0 0 7px rgba(119,109,244,.12); }
.flow-line { position: absolute; top: 50%; width: 33%; height: 1px; overflow: hidden; border-top: 1px dashed #aaa; }
.flow-line::after { content: ""; position: absolute; top: -2px; width: 5px; height: 5px; border-radius: 50%; background: var(--violet); animation: flowDot 2.3s linear infinite; }
.flow-line-one { right: 50%; }
.flow-line-two { left: 50%; }
.flow-line::after { left: 0; }
.flow-line-two::after { animation-delay: -1.15s; }
.service-card-dark { border-color: rgba(255,255,255,.08); background: var(--ink-soft); color: #fff; }
.service-card-dark:hover { border-color: rgba(200,255,76,.3); box-shadow: 0 25px 80px rgba(10,12,9,.24); }
.service-card-dark .service-number { color: rgba(255,255,255,.42); }
.service-card-dark .service-icon { border-color: rgba(255,255,255,.15); color: var(--lime); }
.service-card-dark p { color: rgba(255,255,255,.55); }
.service-card-dark .tag-list li { border-color: rgba(255,255,255,.14); color: rgba(255,255,255,.65); }
.terminal { position: absolute; top: 108px; right: 8%; left: 8%; min-height: 126px; padding: 20px; border: 1px solid rgba(255,255,255,.09); border-radius: 13px; background: #0c0e0c; box-shadow: 0 15px 35px rgba(0,0,0,.2); color: rgba(255,255,255,.75); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .68rem; line-height: 1.9; }
.terminal div > span { color: var(--lime); }
.terminal div > b { color: var(--lime); }
.terminal-muted { color: rgba(255,255,255,.3); }
.terminal-caret { display: inline-block; width: 6px; height: 12px; vertical-align: middle; background: var(--lime); animation: blink 1s steps(1) infinite; }
.service-card-seo { background: #e3e1ff; }
.search-visual { position: absolute; top: 86px; right: 3%; width: 46%; min-height: 250px; padding: 25px; border: 1px solid rgba(17,19,16,.1); border-radius: 18px; background: rgba(255,255,255,.58); box-shadow: 0 20px 60px rgba(62,54,150,.13); }
.search-field { display: flex; height: 44px; align-items: center; gap: 10px; padding: 0 14px; border: 1px solid rgba(17,19,16,.12); border-radius: 999px; background: #fff; font-size: .72rem; }
.search-field > span:first-child { color: #4275e9; font-family: Georgia, serif; font-size: 1rem; font-weight: 900; }
.search-field i { width: 14px; height: 14px; margin-left: auto; border: 1.5px solid #777; border-radius: 50%; }
.search-result { display: grid; margin: 22px 10px; }
.search-result small { margin-bottom: 4px; color: #7c7d78; font-size: .58rem; }
.search-result strong { color: #5147c8; font-size: 1.1rem; }
.search-result span { color: #6a6c66; font-size: .7rem; }
.rank-badge { position: absolute; right: 20px; bottom: 19px; color: #4941bd; font-family: Georgia, serif; font-size: 2.2rem; font-style: italic; font-weight: 800; }
.rank-badge span { font-family: Inter, sans-serif; font-size: .9rem; }

/* Process */
.process { position: relative; overflow: hidden; background: var(--ink); color: #fff; }
.process::before { content: ""; position: absolute; inset: 0; opacity: .055; background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0); background-size: 30px 30px; }
.process-glow { position: absolute; top: -250px; left: 25%; width: 650px; height: 650px; border-radius: 50%; background: rgba(139,128,255,.12); filter: blur(50px); }
.process-grid { display: grid; position: relative; grid-template-columns: .8fr 1.25fr; gap: 140px; }
.process-intro { position: sticky; top: 155px; align-self: start; }
.process-intro h2 { margin-bottom: 30px; font-size: clamp(3.2rem, 5.5vw, 5.6rem); }
.process-intro h2 em { color: var(--lime); }
.process-intro p { max-width: 460px; margin-bottom: 34px; color: rgba(255,255,255,.52); font-size: 1.05rem; }
.steps { position: relative; }
.steps::before { content: ""; position: absolute; top: 32px; bottom: 32px; left: 31px; width: 1px; background: rgba(255,255,255,.14); }
.step { display: grid; grid-template-columns: 64px 1fr; gap: 34px; min-height: 245px; padding: 12px 0 65px; }
.step-marker { display: grid; position: relative; z-index: 2; width: 64px; height: 64px; place-items: center; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; background: var(--ink); color: rgba(255,255,255,.45); font-family: ui-monospace, monospace; font-size: .73rem; transition: color .4s, background .4s, border-color .4s; }
.step.in-view .step-marker { border-color: var(--lime); background: var(--lime); color: var(--ink); box-shadow: 0 0 0 7px rgba(200,255,76,.08); }
.step-content { padding-top: 5px; border-top: 1px solid rgba(255,255,255,.08); }
.step-label { display: inline-block; margin: 16px 0 23px; color: var(--lime); font-size: .64rem; font-weight: 800; letter-spacing: .14em; }
.step h3 { margin-bottom: 13px; font-size: clamp(1.7rem, 3vw, 2.45rem); line-height: 1.06; }
.step p { max-width: 550px; margin: 0; color: rgba(255,255,255,.48); }

/* Solutions */
.solutions { background: #f8f7f2; }
.solutions-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 18px; }
.solution-card { position: relative; min-height: 650px; overflow: hidden; padding: 27px; border-radius: var(--radius); }
.solution-meta { display: flex; position: relative; z-index: 3; justify-content: space-between; font-size: .65rem; font-weight: 800; letter-spacing: .1em; }
.solution-content { position: absolute; z-index: 4; right: 28px; bottom: 32px; left: 28px; }
.solution-kicker { display: block; margin-bottom: 10px; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.solution-content h3 { max-width: 620px; margin-bottom: 14px; font-size: clamp(2rem, 3.8vw, 3.65rem); line-height: .98; }
.solution-content p { max-width: 560px; margin-bottom: 0; }
.solution-commerce { grid-row: span 2; min-height: 900px; background: #d9ff84; }
.solution-commerce .solution-content { right: 50%; }
.solution-commerce p { color: rgba(17,19,16,.6); }
.phone-mockup { position: absolute; top: 120px; right: 5%; width: 43%; min-width: 280px; padding: 9px 9px 15px; border: 3px solid #1a1c19; border-radius: 40px; background: #fbfaf4; box-shadow: 0 28px 60px rgba(17,19,16,.18); transform: rotate(3deg); transition: transform .6s var(--ease); }
.solution-commerce:hover .phone-mockup { transform: rotate(0deg) translateY(-8px); }
.phone-top { display: flex; height: 23px; justify-content: center; }
.phone-top span { width: 63px; height: 15px; border-radius: 999px; background: var(--ink); }
.product-image { display: grid; position: relative; height: 300px; place-items: center; overflow: hidden; border-radius: 26px; background: #e8dfd2; }
.product-image::before, .product-image::after { content: ""; position: absolute; border-radius: 50%; }
.product-image::before { width: 210px; height: 210px; background: #fa794e; }
.product-image::after { right: -40px; bottom: -60px; width: 170px; height: 170px; border: 32px solid #8c7eff; }
.product-image > span { position: relative; z-index: 2; color: #fff; font-size: 6rem; font-weight: 900; letter-spacing: -.1em; text-shadow: 0 7px 25px rgba(0,0,0,.12); }
.product-image > i { position: absolute; z-index: 3; top: 16px; left: 16px; padding: 5px 8px; border-radius: 999px; background: var(--ink); color: #fff; font-size: .55rem; font-style: normal; font-weight: 800; }
.product-copy { display: grid; padding: 14px 5px 8px; }
.product-copy small { color: #8a8b85; font-size: .5rem; letter-spacing: .1em; }
.product-copy strong { font-size: .97rem; }
.product-copy span { margin-top: 2px; font-size: .76rem; }
.product-swatches { display: flex; gap: 5px; padding: 0 5px 12px; }
.product-swatches i { width: 13px; height: 13px; border: 1px solid #fff; border-radius: 50%; outline: 1px solid #bbb; background: #fa794e; }
.product-swatches i:nth-child(2) { background: #8c7eff; }
.product-swatches i:nth-child(3) { background: #d4c3ac; }
.add-button { display: flex; height: 39px; align-items: center; justify-content: space-between; padding: 0 15px; border-radius: 999px; background: var(--ink); color: #fff; font-size: .62rem; font-weight: 800; }
.solution-stats { display: flex; gap: 35px; margin-top: 30px; }
.solution-stats > div { display: flex; align-items: center; gap: 10px; }
.solution-stats strong { font-size: 2rem; letter-spacing: -.06em; }
.solution-stats span { color: rgba(17,19,16,.55); font-size: .65rem; line-height: 1.2; }
.solution-automation { background: #dfdcff; }
.solution-automation .solution-content h3, .solution-rescue .solution-content h3 { font-size: clamp(1.9rem, 3vw, 2.8rem); }
.solution-automation .solution-content { right: 36%; }
.solution-automation p { color: rgba(17,19,16,.58); }
.automation-demo { position: absolute; top: 80px; right: 5%; width: 58%; height: 310px; }
.auto-label { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; border: 1px solid rgba(17,19,16,.1); border-radius: 999px; background: rgba(255,255,255,.5); font-size: .57rem; font-weight: 800; }
.auto-label i { width: 6px; height: 6px; border-radius: 50%; background: #56a21d; box-shadow: 0 0 0 4px rgba(86,162,29,.1); }
.auto-node { display: grid; position: absolute; z-index: 2; min-width: 155px; grid-template-columns: 25px 1fr; padding: 12px; border: 1px solid rgba(17,19,16,.12); border-radius: 12px; background: rgba(255,255,255,.75); box-shadow: 0 10px 30px rgba(63,55,145,.1); }
.auto-node > span { display: grid; grid-row: 1 / span 2; width: 20px; height: 20px; place-items: center; border-radius: 6px; background: var(--ink); color: #fff; font-size: .52rem; }
.auto-node strong { font-size: .65rem; }
.auto-node small { color: #797b75; font-size: .55rem; }
.auto-node-a { top: 62px; left: 0; }
.auto-node-b { top: 142px; right: 0; }
.auto-node-c { top: 230px; left: 12%; }
.auto-path { position: absolute; z-index: 1; width: 2px; height: 82px; overflow: hidden; border-left: 1px dashed rgba(17,19,16,.35); transform: rotate(-45deg); }
.auto-path::after { content: ""; position: absolute; top: -8px; left: -2px; width: 4px; height: 8px; border-radius: 8px; background: var(--violet); animation: flowVertical 2s linear infinite; }
.path-a { top: 99px; left: 50%; }
.path-b { top: 177px; right: 43%; transform: rotate(50deg); }
.solution-rescue { border: 1px solid rgba(255,255,255,.08); background: #1a1c1a; color: #fff; }
.solution-rescue p { color: rgba(255,255,255,.5); }
.rescue-display { position: absolute; top: 60px; right: 12%; }
.radar { display: grid; position: relative; width: 240px; height: 240px; place-items: center; overflow: hidden; border: 1px solid rgba(200,255,76,.32); border-radius: 50%; background: radial-gradient(circle, rgba(200,255,76,.07), transparent 65%); }
.radar::before, .radar::after, .radar i { content: ""; position: absolute; border: 1px solid rgba(200,255,76,.15); border-radius: 50%; }
.radar::before { width: 160px; height: 160px; }
.radar::after { width: 80px; height: 80px; }
.radar i:nth-child(1) { width: 1px; height: 100%; border: 0; border-left: 1px solid rgba(200,255,76,.14); border-radius: 0; }
.radar i:nth-child(2) { width: 100%; height: 1px; border: 0; border-top: 1px solid rgba(200,255,76,.14); border-radius: 0; }
.radar b { display: grid; z-index: 2; width: 48px; height: 48px; place-items: center; border-radius: 50%; background: var(--lime); color: var(--ink); font-size: 1.2rem; box-shadow: 0 0 0 10px rgba(200,255,76,.07); }
.radar-sweep { position: absolute; top: 0; left: 50%; width: 50%; height: 50%; border-left: 1px solid rgba(200,255,76,.8); background: linear-gradient(30deg, rgba(200,255,76,.2), transparent 55%); transform-origin: left bottom; animation: radar 4s linear infinite; }
.system-status { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 14px; color: rgba(255,255,255,.55); font-family: ui-monospace, monospace; font-size: .6rem; letter-spacing: .09em; }
.system-status span { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 10px var(--lime); }

/* Standards */
.standards { background: var(--paper); }
.standards-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 110px; }
.standards-copy { position: sticky; top: 150px; align-self: start; }
.standards-copy h2 { font-size: clamp(3.4rem, 6vw, 6.3rem); }
.standards-copy h2 em { color: var(--violet); }
.standard-item { display: grid; grid-template-columns: 45px 1fr 35px; gap: 25px; padding: 36px 4px; border-top: 1px solid var(--line); transition: padding .35s var(--ease), background .35s; }
.standard-item:last-child { border-bottom: 1px solid var(--line); }
.standard-item:hover { padding-inline: 15px; background: rgba(255,255,255,.35); }
.standard-item > span { color: #8a8d85; font-family: ui-monospace, monospace; font-size: .68rem; }
.standard-item h3 { margin-bottom: 7px; font-size: 1.55rem; }
.standard-item p { max-width: 550px; margin: 0; font-size: .93rem; }
.standard-item > b { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: .8rem; transition: color .3s, background .3s, transform .3s; }
.standard-item:hover > b { background: var(--lime); transform: rotate(45deg); }

/* FAQ */
.faq { background: #e9e8e1; }
.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 110px; }
.faq-intro { position: sticky; top: 150px; align-self: start; }
.faq-intro h2 { margin-bottom: 28px; font-size: clamp(3.4rem, 6vw, 5.7rem); }
.faq-intro p { margin-bottom: 5px; }
.faq-intro .text-link { font-size: .9rem; }
.faq-item { border-top: 1px solid rgba(17,19,16,.15); }
.faq-item:last-child { border-bottom: 1px solid rgba(17,19,16,.15); }
.faq-item button { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 25px; padding: 30px 2px; border: 0; background: transparent; text-align: left; cursor: pointer; }
.faq-item button > span { font-size: 1.22rem; font-weight: 720; letter-spacing: -.025em; }
.faq-item button i { display: block; position: relative; flex: 0 0 34px; width: 34px; height: 34px; border: 1px solid rgba(17,19,16,.16); border-radius: 50%; transition: background .3s, transform .4s var(--ease); }
.faq-item button i::before, .faq-item button i::after { content: ""; position: absolute; top: 50%; left: 50%; width: 12px; height: 1px; background: var(--ink); transform: translate(-50%,-50%); }
.faq-item button i::after { transform: translate(-50%,-50%) rotate(90deg); transition: transform .35s; }
.faq-item.open button i { background: var(--lime); transform: rotate(90deg); }
.faq-item.open button i::after { transform: translate(-50%,-50%) rotate(0deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }
.faq-answer > div { overflow: hidden; }
.faq-answer p { max-width: 650px; margin: 0; padding: 0 55px 28px 2px; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }

/* Contact */
.contact { position: relative; padding: 145px 0; overflow: hidden; background: var(--violet); color: #fff; }
.contact::before { content: ""; position: absolute; inset: 0; opacity: .12; background: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px); background-size: 65px 65px; }
.contact-orb { position: absolute; right: -180px; bottom: -300px; width: 700px; height: 700px; border-radius: 50%; background: var(--lime); filter: blur(5px); opacity: .12; }
.contact-inner { display: grid; position: relative; grid-template-columns: .92fr 1.08fr; gap: 100px; }
.contact-heading h2 { margin-bottom: 28px; font-size: clamp(3.8rem, 6.7vw, 7rem); }
.contact-heading h2 em { color: var(--lime); }
.contact-heading > p { max-width: 520px; color: rgba(255,255,255,.68); font-size: 1.07rem; }
.contact-direct { display: grid; margin-top: 55px; }
.contact-direct span { color: rgba(255,255,255,.5); font-size: .7rem; }
.contact-direct a { width: fit-content; border-bottom: 1px solid rgba(255,255,255,.45); font-size: 1.12rem; font-weight: 750; }
.contact-direct b { color: var(--lime); }
.contact-form { align-self: center; padding: 34px; border: 1px solid rgba(255,255,255,.16); border-radius: 25px; background: rgba(16,17,15,.88); box-shadow: 0 30px 90px rgba(36,28,117,.28); -webkit-backdrop-filter: blur(15px); backdrop-filter: blur(15px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: grid; gap: 8px; margin-bottom: 17px; }
.contact-form label > span { color: rgba(255,255,255,.54); font-size: .68rem; font-weight: 750; letter-spacing: .035em; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; border: 0; border-bottom: 1px solid rgba(255,255,255,.16); border-radius: 0; outline: none; background: transparent; color: #fff; transition: border-color .25s; }
.contact-form input { height: 47px; }
.contact-form select { height: 47px; cursor: pointer; }
.contact-form select option { color: var(--ink); }
.contact-form textarea { min-height: 93px; padding-top: 12px; resize: vertical; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,.3); }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--lime); }
.form-submit { width: 100%; margin-top: 10px; }
.form-note { margin: 12px 0 0; color: rgba(255,255,255,.36); font-size: .65rem; text-align: center; }

/* Footer */
.footer { padding: 70px 0 25px; background: var(--ink); color: #fff; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: end; padding-bottom: 70px; }
.brand-footer { font-size: 1.4rem; }
.brand-footer .brand-mark { width: 48px; }
.footer-top p { margin: 0; color: rgba(255,255,255,.5); font-size: 1.55rem; line-height: 1.12; letter-spacing: -.04em; }
.back-top { display: flex; align-items: center; justify-content: flex-end; gap: 10px; color: rgba(255,255,255,.6); font-size: .65rem; font-weight: 800; letter-spacing: .12em; }
.back-top span { display: grid; width: 35px; height: 35px; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: #fff; transition: background .3s, color .3s, transform .3s; }
.back-top:hover span { background: var(--lime); color: var(--ink); transform: translateY(-3px); }
.footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.34); font-size: .67rem; }
.footer-bottom div { display: flex; gap: 24px; }
.footer-bottom > span:last-child { text-align: right; }
.footer-bottom > span:last-child span { color: var(--lime); }
.footer-bottom a { transition: color .2s; }
.footer-bottom a:hover { color: #fff; }

/* Reveal / animation states */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.js .reveal[data-delay="1"] { transition-delay: .1s; }
.js .reveal[data-delay="2"] { transition-delay: .2s; }
.js .reveal[data-delay="3"] { transition-delay: .3s; }
.js .reveal[data-delay="4"] { transition-delay: .4s; }

@keyframes ping { 0%, 30% { opacity: 1; transform: scale(.8); } 80%, 100% { opacity: 0; transform: scale(1.7); } }
@keyframes scrollCue { 0% { transform: translateY(0); } 100% { transform: translateY(200%); } }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes float { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-10px) rotate(1deg); } }
@keyframes orbitRotate { to { transform: rotate(360deg); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes cursorMove { 0%,100% { transform: translate(0,0); } 45% { transform: translate(48px,-35px); } 70% { transform: translate(-15px,-18px); } }
@keyframes flowDot { from { transform: translateX(0); } to { transform: translateX(190px); } }
@keyframes blink { 50% { opacity: 0; } }
@keyframes flowVertical { to { transform: translateY(95px); } }
@keyframes radar { to { transform: rotate(360deg); } }

/* Laptop */
@media (max-width: 1100px) {
  :root { --shell: min(calc(100% - 42px), 1080px); }
  .nav-links { gap: 20px; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: .95fr 1.05fr; gap: 25px; }
  .hero h1 { font-size: clamp(3.8rem, 6.8vw, 5.6rem); }
  .hero-stage { min-height: 570px; transform: scale(.92); transform-origin: center right; }
  .section-heading, .contact-inner { gap: 60px; }
  .process-grid { gap: 70px; }
  .solutions-grid { grid-template-columns: 1fr 1fr; }
  .solution-commerce .solution-content { right: 35%; }
  .phone-mockup { right: 2%; width: 42%; min-width: 240px; }
  .product-image { height: 245px; }
  .standards-grid, .faq-grid { gap: 65px; }
}

/* Tablet + mobile nav */
@media (max-width: 900px) {
  :root { --shell: calc(100% - 34px); }
  .section { padding: 105px 0; }
  .nav { height: 60px; padding-left: 13px; -webkit-backdrop-filter: none; backdrop-filter: none; }
  .button-nav { display: none; }
  .menu-toggle { display: grid; position: relative; z-index: 4; width: 44px; height: 44px; margin-left: auto; place-items: center; border: 0; border-radius: 50%; background: var(--ink); cursor: pointer; }
  .menu-toggle span { position: absolute; width: 17px; height: 1.5px; background: #fff; transition: transform .35s var(--ease), top .35s var(--ease); }
  .menu-toggle span:first-child { top: 18px; }
  .menu-toggle span:last-child { top: 25px; }
  .menu-toggle[aria-expanded="true"] span:first-child { top: 22px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { top: 22px; transform: rotate(-45deg); }
  .nav-links { display: flex; position: fixed; z-index: 3; inset: 0; align-items: flex-start; justify-content: center; flex-direction: column; gap: 5px; padding: 110px 30px 40px; background: rgba(244,243,237,.98); opacity: 0; pointer-events: none; transform: translateY(-15px); transition: opacity .35s, transform .35s var(--ease); }
  .nav-links::after { content: "hello@beonline.gr"; margin-top: auto; color: #777a73; font-size: .8rem; }
  .nav-links a { font-size: clamp(2.5rem, 9vw, 4rem); line-height: 1.1; letter-spacing: -.05em; }
  .nav-links.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .hero { padding-top: 125px; }
  .hero-grid { display: block; }
  .hero-copy { max-width: 720px; }
  .hero h1 { max-width: 800px; font-size: clamp(4.1rem, 10.5vw, 6.5rem); }
  .hero-lead { max-width: 660px; }
  .hero-stage { min-height: 600px; margin-top: 20px; transform: none; }
  .dashboard-card { left: 50%; width: min(590px, 88%); transform: translateX(-50%) rotateY(-4deg); }
  .pill-seo { right: 7%; }
  .pill-speed { left: 7%; }
  .orbit-one { right: 50%; transform: translateX(50%); }
  .section-heading { display: block; }
  .section-heading > div { margin-bottom: 28px; }
  .section-heading p { max-width: 640px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card, .service-card-wide { grid-column: auto; min-height: 490px; }
  .service-card-wide .service-copy { max-width: 53%; }
  .web-visual, .search-visual { right: 3%; width: 43%; }
  .process-grid { grid-template-columns: 1fr; gap: 80px; }
  .process-intro, .standards-copy, .faq-intro { position: static; }
  .process-intro p { max-width: 620px; }
  .solutions-grid { grid-template-columns: 1fr; }
  .solution-commerce { grid-row: auto; min-height: 850px; }
  .solution-commerce .solution-content { right: 45%; }
  .solution-automation, .solution-rescue { min-height: 620px; }
  .standards-grid, .faq-grid { grid-template-columns: 1fr; gap: 60px; }
  .standards-copy h2 { margin-bottom: 0; }
  .contact-inner { grid-template-columns: 1fr; gap: 60px; }
  .contact-heading > p { max-width: 660px; }
}

/* Phones */
@media (max-width: 620px) {
  :root { --shell: calc(100% - 26px); --radius: 21px; }
  body { font-size: 15px; }
  .site-header { padding: 10px 0; }
  .nav { height: 56px; padding: 6px 6px 6px 11px; }
  .brand-mark { width: 34px; }
  .section { padding: 85px 0; }
  .kicker { margin-bottom: 20px; }
  .section-heading { margin-bottom: 42px; }
  .section-heading h2, h2 { font-size: clamp(2.7rem, 14vw, 4.1rem); }
  .hero { min-height: 0; padding: 105px 0 70px; background-size: 42px 42px; }
  .hero-grid { min-height: 0; }
  .eyebrow { margin-bottom: 22px; padding: 8px 10px; font-size: .61rem; }
  .hero h1 { margin-bottom: 23px; font-size: clamp(3.55rem, 18vw, 5.5rem); line-height: .87; }
  .heading-accent::after { bottom: 3px; }
  .hero-lead { margin-bottom: 27px; font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 16px; margin-bottom: 39px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { margin-left: 4px; }
  .hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .proof-divider { display: none; }
  .proof-item strong { font-size: .95rem; }
  .proof-item span { font-size: .6rem; white-space: normal; }
  .hero-stage { min-height: 420px; margin: 25px -8px 0; }
  .dashboard-card { top: 70px; width: 100%; border-radius: 18px; transform: translateX(-50%) rotate(0); }
  .dashboard-topbar { height: 40px; padding-inline: 12px; }
  .dashboard-body { padding: 18px 14px; }
  .dashboard-title-row h2 { font-size: 1.16rem; }
  .score-ring { width: 45px; height: 45px; }
  .score-ring::before { width: 37px; height: 37px; }
  .chart { height: 105px; }
  .chart svg { height: 90px; }
  .metric-grid { gap: 5px; }
  .metric-card { grid-template-columns: 23px 1fr; padding: 8px 6px; }
  .metric-icon { width: 19px; height: 19px; }
  .metric-card > span:not(.metric-icon) { font-size: .47rem; }
  .metric-card strong { font-size: .59rem; }
  .floating-pill { padding: 8px 10px; }
  .pill-seo { top: 31px; right: -3px; }
  .pill-speed { bottom: 13px; left: -2px; }
  .orbit-one { top: 7px; width: 380px; height: 380px; }
  .orbit-two { display: none; }
  .scroll-cue { display: none; }
  .ticker-track { padding: 14px 0; }
  .ticker-content span { padding: 0 18px; font-size: .64rem; }
  .services { padding-top: 100px; }
  .services-grid { gap: 12px; }
  .service-card, .service-card-wide { min-height: 510px; padding: 21px; }
  .service-card-wide .service-copy { max-width: none; }
  .service-copy h3 { font-size: 2rem; }
  .service-copy p { margin-bottom: 17px; font-size: .91rem; }
  .web-visual { top: 80px; right: 7%; left: 7%; width: auto; height: 240px; }
  .mini-browser { width: 100%; }
  .mini-browser-page { height: 190px; }
  .service-card-wide .service-copy { padding-top: 260px; }
  .flow-visual { top: 105px; right: 4%; left: 4%; }
  .flow-center { margin-inline: 18px; }
  .terminal { top: 100px; right: 5%; left: 5%; }
  .search-visual { top: 80px; right: 5%; left: 5%; width: auto; min-height: 205px; padding: 18px; }
  .service-card-seo .service-copy { padding-top: 235px; }
  .process-grid { gap: 60px; }
  .process-intro h2 { font-size: 3.15rem; }
  .step { grid-template-columns: 48px 1fr; gap: 20px; min-height: 220px; padding-bottom: 50px; }
  .steps::before { left: 23px; }
  .step-marker { width: 48px; height: 48px; }
  .step-label { margin-top: 11px; margin-bottom: 18px; }
  .step h3 { font-size: 1.65rem; }
  .solution-card { min-height: 650px; padding: 20px; }
  .solution-content { right: 20px; bottom: 25px; left: 20px; }
  .solution-commerce { min-height: 820px; }
  .solution-commerce .solution-content { right: 20px; }
  .phone-mockup { top: 80px; right: 50%; width: 265px; min-width: 0; transform: translateX(50%) rotate(2deg); }
  .solution-commerce:hover .phone-mockup { transform: translateX(50%) rotate(0) translateY(-5px); }
  .solution-stats { gap: 20px; }
  .solution-automation .solution-content { right: 20px; }
  .automation-demo { right: 6%; width: 88%; }
  .solution-rescue { min-height: 610px; }
  .rescue-display { top: 65px; right: 50%; transform: translateX(50%); }
  .radar { width: 210px; height: 210px; }
  .standards-grid, .faq-grid { gap: 42px; }
  .standard-item { grid-template-columns: 32px 1fr; gap: 12px; padding-block: 27px; }
  .standard-item > b { display: none; }
  .standard-item h3 { font-size: 1.35rem; }
  .faq-item button { padding-block: 24px; }
  .faq-item button > span { font-size: 1.05rem; }
  .faq-item button i { flex-basis: 30px; width: 30px; height: 30px; }
  .faq-answer p { padding-right: 10px; }
  .contact { padding: 90px 0; }
  .contact-heading h2 { font-size: clamp(3.2rem, 16vw, 5rem); }
  .contact-inner { gap: 45px; }
  .contact-direct { margin-top: 35px; }
  .contact-form { padding: 24px 19px; border-radius: 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer { padding-top: 55px; }
  .footer-top { grid-template-columns: 1fr auto; gap: 35px; padding-bottom: 45px; }
  .footer-top p { grid-column: span 2; grid-row: 2; font-size: 1.35rem; }
  .footer-bottom { display: flex; align-items: flex-start; flex-direction: column; gap: 15px; }
  .footer-bottom > span:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}


/* WordPress integration */
.admin-bar .site-header { top: 32px; }
.custom-logo { display: block; width: auto; max-width: 52px; height: 38px; object-fit: contain; }
.nav-links .nav-menu { display: flex; align-items: center; gap: clamp(22px, 3vw, 42px); margin: 0; padding: 0; list-style: none; }
.nav-links .nav-menu li { margin: 0; }
.nav-links .nav-menu a { display: block; }

/* Contact Form 7 inherits the landing-page design. */
.contact-form-cf7 .wpcf7-form { margin: 0; }
.contact-form .wpcf7-form-control-wrap { display: block; width: 100%; }
.contact-form .wpcf7-not-valid-tip { margin-top: 5px; color: #ffac96; font-size: .68rem; }
.contact-form .wpcf7-response-output { margin: 17px 0 0 !important; padding: 11px 13px !important; border: 1px solid rgba(255,255,255,.2) !important; border-radius: 10px; color: rgba(255,255,255,.8); font-size: .75rem; }
.contact-form .wpcf7-spinner { display: block; margin: 12px auto 0; background-color: rgba(255,255,255,.25); }
.contact-form input[type="submit"].form-submit { height: 54px; border: 0; cursor: pointer; }
.contact-form .wpcf7-submit:disabled { cursor: wait; opacity: .6; }
.cf7-setup { padding: 20px; border: 1px dashed rgba(255,255,255,.28); border-radius: 13px; color: rgba(255,255,255,.72); }
.cf7-setup strong { display: block; margin-bottom: 5px; color: #fff; }
.cf7-setup p { margin: 0; color: inherit; }
.cf7-setup a { color: var(--lime); text-decoration: underline; }

/* Standard WordPress content pages. */
.inner-page { min-height: 70vh; padding: 150px 0 100px; }
.inner-page .entry-header { max-width: 900px; margin-bottom: 45px; }
.inner-page .entry-title { margin-bottom: 20px; font-size: clamp(3rem, 7vw, 6rem); line-height: .95; }
.entry-content { }
.entry-content > * + * { margin-top: 1.3em; }
.entry-content a { text-decoration: underline; text-decoration-color: var(--lime-strong); text-decoration-thickness: 3px; text-underline-offset: 3px; }
.entry-content img { height: auto; border-radius: var(--radius-sm); }
.entry-content h2 { margin: 1em 0 .35em; font-size: clamp(2.2rem, 5vw, 4rem); }
.entry-content h3 { margin: 1.2em 0 .4em; font-size: 1.7rem; }
.entry-content ul, .entry-content ol { padding-left: 1.25em; }
.not-found { display: grid; min-height: 70vh; place-items: center; padding: 150px 20px 80px; text-align: center; }
.not-found h1 { margin-bottom: 15px; font-size: clamp(5rem, 18vw, 12rem); line-height: .8; }
.not-found p { margin-bottom: 28px; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (max-width: 900px) {
  .nav-links .nav-menu { width: 100%; align-items: flex-start; flex-direction: column; gap: 5px; }
  .nav-links .nav-menu a { font-size: clamp(2.5rem, 9vw, 4rem); line-height: 1.1; letter-spacing: -.05em; }
}
@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}
@media (max-width: 600px) {
  .admin-bar .site-header.scrolled { top: 0; }
}
