/*
Theme Name: Ozonewebs
Theme URI: https://ozonewebs.com
Author: Ozonewebs Tech Solutions
Author URI: https://ozonewebs.com
Description: Custom theme for Ozonewebs Tech Solutions — editorial studio design. Sora display, Figtree body, Newsreader italic accents. Navy and amber.
Version: 3.7.1
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: ozonewebs
*/

:root {
  --navy: #0B1B3F;
  --navy-soft: #142A5C;
  --amber: #F0A52A;
  --amber-ink: #B4740A;
  --amber-wash: #FDF0DC;
  --paper: #FBFAF7;
  --paper-alt: #F3F1EA;
  --panel: #E8E5DE;
  --line: #E4E0D8;
  --line-strong: #DDD8CE;
  --ink: #3F3B35;
  --body: #57534E;
  --muted: #6E6A62;
  --muted-soft: #8A8478;
  --green: #1F7A4C;
  --green-wash: #DDF0E4;
  --radius: 14px;
  --radius-sm: 6px;
  --max: 1440px;
  --gutter: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: 'Figtree', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

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

/* ---- Eyebrow with hairline rule ---- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber-ink);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--amber);
  display: block;
  flex-shrink: 0;
}
.eyebrow.on-navy { color: var(--amber); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  border-radius: var(--radius-sm);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, transform .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-amber { background: var(--amber); color: var(--navy); }
.btn-amber:hover { background: #E09415; }
.btn-ghost { border-color: rgba(255,255,255,0.28); color: #fff; }
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-soft); }
.btn-sm { padding: 12px 24px; font-size: 14px; }

/* ---- Underline link ---- */
.ulink {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy);
  border-bottom: 2px solid var(--amber);
  padding-bottom: 3px;
  display: inline-block;
}
.ulink:hover { border-bottom-color: var(--navy); }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy);
}
/* Header: logo left, nav right. Two children only — the logo markup
   must never nest an anchor inside an anchor, or the browser splits it
   into two siblings and this layout breaks. */
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 92px;
}
.site-header .wrap > .site-logo { margin-right: auto; }

.site-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.02em;
  margin-right: auto;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-logo img, .site-logo .custom-logo {
  max-height: 44px;
  width: auto;
  height: auto;
  display: block;
}
.site-logo .custom-logo-link { display: block; line-height: 0; }
.site-logo a { display: block; line-height: 0; }

.primary-nav { display: flex; align-items: center; gap: 36px; }
.primary-nav ul { list-style: none; display: flex; gap: 36px; margin: 0; padding: 0; }
.primary-nav li { position: relative; }
/* Scoped to menu links only — the CTA is also an <a> inside the nav
   and was inheriting this tall padding, stretching it to full header
   height. */
.primary-nav ul a {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  padding: 34px 0;
  display: inline-block;
}
.primary-nav ul a:hover { color: #fff; }
/* The CTA is an <a> inside the nav, so it must opt out of the menu-link
   sizing explicitly or it stretches to the full header height. */
.site-header .primary-nav > a.btn {
  align-self: center;
  flex-shrink: 0;
  padding: 12px 24px;
  height: auto;
  line-height: 1.2;
  border-radius: 6px;
}

.primary-nav ul ul {
  display: none;
  position: absolute;
  top: 100%;
  left: -18px;
  margin: 0;
  padding: 8px;
  padding-top: 8px;
  min-width: 256px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(11,27,63,0.22);
  flex-direction: column;
  gap: 0;
  z-index: 300;
}
.primary-nav li:hover > ul { display: flex; }
.primary-nav ul ul a {
  display: block;
  padding: 11px 14px;
  border-radius: 5px;
  font-size: 14.5px;
  color: var(--body);
  white-space: nowrap;
}
.primary-nav ul ul a:hover { background: var(--paper-alt); color: var(--navy); }

.menu-toggle { display: none; background: none; border: none; color: #fff; cursor: pointer; padding: 6px; }

/* ============ HERO ============ */
.hero {
  background: var(--navy);
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
}
.hero .ring {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 50%;
  pointer-events: none;
}
.hero .ring-1 { top: -140px; right: -80px; width: 460px; height: 460px; }
.hero .ring-2 { top: -40px; right: 60px; width: 300px; height: 300px; border-color: rgba(255,255,255,0.07); }

.hero-inner { position: relative; display: flex; gap: 64px; align-items: flex-start; padding-bottom: 72px; }
.hero-copy { flex: 1.15; }
.hero h1 {
  font-size: clamp(38px, 4.6vw, 66px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 11ch;
  margin-bottom: 28px;
}
.hero h1 .serif {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--amber);
  letter-spacing: -0.01em;
}
.hero-lead { font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.72); max-width: 46ch; margin: 0 0 36px; }
.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 44px;
  flex-wrap: nowrap;
  align-items: stretch;
}
.hero-actions .btn { white-space: nowrap; flex: 0 1 auto; min-width: 0; }

/* grid-auto-flow: column keeps every stat on one row at any width —
   columns shrink instead of wrapping. */
.hero-stats {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  gap: 40px;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 28px;
}
.hero-stats > div { min-width: 0; }
.hero-stats .value {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #fff;
  letter-spacing: -0.02em;
  display: block;
}
.hero-stats .label { font-size: 13.5px; color: rgba(255,255,255,0.6); margin-top: 2px; display: block; }

.hero-media { flex: 1; position: relative; padding-top: 12px; }
.hero-frame {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 32px 64px rgba(0,0,0,0.32);
}
.hero-frame img { width: 100%; height: 400px; object-fit: cover; }
/* A real image supplies its own background — drop the empty-state tint
   so transparent PNGs do not sit on a grey/brown panel. */
.hero-frame.has-image { background: #FFFFFF; }
.hero-frame.contain.has-image { background: transparent; box-shadow: none; }
.hero-frame.contain img { object-fit: contain; height: auto; max-height: 420px; }

.float-card {
  position: absolute;
  background: #fff;
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.22);
  display: flex;
  align-items: center;
  gap: 12px;
}
.float-card.top { top: -18px; left: -44px; }
.float-card.bottom { bottom: -22px; right: -36px; }
.float-card .ico {
  width: 34px; height: 34px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.float-card .ico.amber { background: var(--amber-wash); }
.float-card .ico.green { background: var(--green-wash); }
.float-card .t { display: block; font-family: 'Sora', sans-serif; font-weight: 600; font-size: 13.5px; color: var(--navy); }
.float-card .s { display: block; font-size: 12.5px; color: var(--muted); }

/* ---- Sector strip ---- */
.sector-strip {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 26px 0;
}
.sector-strip .wrap { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.sector-track { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
/* The duplicate set is only needed for the mobile marquee. */
.sector-track .item[aria-hidden="true"] { display: none; }
.sector-strip .lbl {
  font-family: 'Sora', sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.sector-strip span.item { font-size: 15px; color: rgba(255,255,255,0.78); }

/* ============ SECTIONS ============ */
.section { padding: 104px 0; }
.section.tight { padding: 96px 0; }
.section.paper-alt { background: var(--paper-alt); }
.section.navy { background: var(--navy); }
.section.navy h2 { color: #fff; }

.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 56px; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(30px, 3.2vw, 44px); max-width: 18ch; }

/* ---- Work rows ---- */
.work-row {
  display: flex;
  gap: 56px;
  align-items: center;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
}
.work-row:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.work-row.flip { flex-direction: row-reverse; }
.work-shot {
  flex: 1.05;
  min-height: 320px;
  background: var(--panel);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* A frame holding a real image drops the empty-state tint entirely and
   shows the whole image, so transparent PNG mockups are neither tinted
   nor cropped. Tick "Crop project images" to fill the frame instead. */
.work-shot.has-image { background: transparent; min-height: 0; }
.work-shot img { width: 100%; height: auto; max-height: 360px; object-fit: contain; }
.work-shot.crop { background: var(--panel); }
.work-shot.crop img { height: 320px; object-fit: cover; }
.work-body { flex: 1; }
.work-kicker { font-family: 'Sora', sans-serif; font-size: 13px; color: var(--amber-ink); margin-bottom: 14px; }
.work-body h3 { font-size: 28px; font-weight: 600; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 16px; }
.work-body p { font-size: 16px; line-height: 1.75; margin: 0 0 24px; }
.tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.tag {
  padding: 7px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  font-size: 13px;
  color: var(--body);
}

/* ---- Services index ---- */
.services-split { display: flex; gap: 72px; align-items: flex-start; }
.services-aside { flex: 0 0 340px; position: sticky; top: 130px; }
.services-aside h2 { font-size: 40px; margin-bottom: 20px; }
.services-list { flex: 1; }
.service-row {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 30px 0;
  border-top: 1px solid var(--line-strong);
  transition: padding-left .2s ease;
}
.service-row:last-child { border-bottom: 1px solid var(--line-strong); }
.service-row:hover { padding-left: 10px; }
.service-row .num { font-family: 'Sora', sans-serif; font-size: 13px; color: var(--amber-ink); padding-top: 6px; }
.service-row .body { flex: 1; }
.service-row .t {
  display: block;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-row .d { display: block; font-size: 15.5px; line-height: 1.7; max-width: 58ch; }
.service-row .arrow { font-size: 20px; color: var(--navy); padding-top: 4px; }

/* ---- Pull quote ---- */
.quote-block { max-width: 900px; margin: 0 auto; text-align: center; }
.quote-block .q {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.45;
  color: var(--navy);
  margin-bottom: 28px;
}
.quote-block .who { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 15px; color: var(--navy); }
.quote-block .role { font-size: 14px; color: var(--muted); margin-top: 3px; }

/* ---- Process ---- */
.process-grid { display: flex; gap: 32px; flex-wrap: wrap; }
.process-step { flex: 1; min-width: 220px; border-top: 2px solid rgba(255,255,255,0.2); padding-top: 24px; }
.process-step:first-child { border-top-color: var(--amber); }
.process-step .num { font-family: 'Sora', sans-serif; font-size: 13px; color: var(--amber); margin-bottom: 12px; }
.process-step .t { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 19px; color: #fff; margin-bottom: 10px; }
.process-step p { margin: 0; font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.68); }

/* ---- Qualifying ---- */
.qual-split { display: flex; gap: 72px; align-items: flex-start; }
.qual-intro { flex: 1; }
.qual-intro h2 { font-size: 40px; margin-bottom: 20px; max-width: 16ch; }
.qual-intro p { max-width: 42ch; margin: 0; }
.qual-list { flex: 1.2; }
.qual-item { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.qual-item:last-child { border-bottom: none; }
.qual-item .mark { font-size: 17px; color: var(--green); flex-shrink: 0; }
.qual-item.no .mark { color: var(--muted-soft); }
.qual-item .txt { font-size: 16px; color: var(--ink); }
.qual-item.no .txt { color: #78736B; }

/* ---- CTA ---- */
.cta-band {
  background: var(--navy);
  border-radius: 18px;
  padding: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
}
.cta-band .ring { position: absolute; bottom: -120px; right: -60px; width: 340px; height: 340px; border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; }
.cta-band .inner { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 3vw, 42px); max-width: 18ch; margin-bottom: 14px; }
.cta-band p { margin: 0; font-size: 17px; color: rgba(255,255,255,0.7); max-width: 46ch; }
.cta-actions { position: relative; display: flex; flex-direction: column; gap: 12px; }

/* ============ INNER PAGES ============ */
.page-hero { background: var(--navy); padding: 64px 0 72px; position: relative; overflow: hidden; }
.page-hero .ring { position: absolute; border: 1px solid rgba(255,255,255,0.09); border-radius: 50%; pointer-events: none; }
.page-hero .ring-1 { top: -180px; right: -100px; width: 420px; height: 420px; }
.page-hero .wrap { position: relative; }
.page-hero h1 { color: #fff; font-size: clamp(30px, 4vw, 48px); max-width: 18ch; }
.page-hero .lead { margin: 18px 0 0; font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.72); max-width: 58ch; }

.crumbs { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: rgba(255,255,255,0.5); margin-bottom: 28px; flex-wrap: wrap; }
.crumbs a { color: rgba(255,255,255,0.72); }
.crumbs a:hover { color: var(--amber); }
.crumbs .here { color: rgba(255,255,255,0.5); }

.page-hero-main { display: flex; gap: 28px; align-items: flex-start; }
.hero-index {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 54px;
  line-height: 1;
  color: rgba(255,255,255,0.16);
  letter-spacing: -0.03em;
  flex-shrink: 0;
  padding-top: 4px;
}
.hero-page-actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

.page-layout { display: flex; gap: 56px; align-items: flex-start; }
.page-layout.no-sidebar { max-width: 780px; }
.page-body { flex: 1; min-width: 0; }
.page-side { flex: 0 0 310px; position: sticky; top: 124px; }

.side-card { border: 1px solid var(--line); border-radius: 14px; padding: 26px; margin-bottom: 20px; background: #fff; }
.side-card.wash { background: var(--navy); border-color: var(--navy); }
.side-card.wash .side-title { color: #fff; }
.side-card.wash p { color: rgba(255,255,255,0.7); font-size: 14.5px; line-height: 1.7; margin: 0 0 20px; }
.side-wa { display: block; margin-top: 14px; font-size: 13.5px; color: var(--amber); text-align: center; }
.side-wa:hover { color: #fff; }

.side-title {
  display: block;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 14px;
}
.side-links { list-style: none; margin: 0; padding: 0; }
.side-links li { border-top: 1px solid var(--line); }
.side-links li:first-child { border-top: none; }
.side-links a { display: flex; gap: 12px; padding: 12px 0; font-size: 14.5px; transition: padding-left .18s ease; }
.side-links a:hover { padding-left: 6px; color: var(--amber-ink); }
.side-links .n { font-family: 'Sora', sans-serif; font-size: 12px; color: var(--amber-ink); padding-top: 3px; }

/* Content column */
.page-body h2 { font-size: 28px; margin: 44px 0 16px; }
.page-body h2:first-child { margin-top: 0; }
.page-body h3 { font-size: 20px; font-weight: 600; margin: 30px 0 12px; }
.page-body p { margin: 0 0 18px; font-size: 16.5px; line-height: 1.8; }
.page-body ul { list-style: none; margin: 0 0 24px; padding: 0; }
.page-body ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 13px;
  font-size: 16px;
  line-height: 1.7;
}
.page-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 16px;
  height: 9px;
  border-left: 2px solid var(--amber);
  border-bottom: 2px solid var(--amber);
  transform: rotate(-45deg);
}
.page-body ol { margin: 0 0 24px; padding-left: 22px; }
.page-body ol li { margin-bottom: 12px; font-size: 16px; }
.page-body a { color: var(--amber-ink); border-bottom: 1px solid var(--amber); }
.page-body a:hover { color: var(--navy); }
.page-body img { border-radius: 14px; margin: 28px 0; max-width: 100%; height: auto; }
/* Legacy page-builder content can carry full-bleed sections that escape
   the content column. Keep anything inside the article within it. */
.page-body { overflow-x: hidden; }
.page-body [class*="elementor"] { max-width: 100%; }
.page-body strong { color: var(--navy); font-weight: 600; }
.page-body > p:first-of-type { font-size: 18.5px; line-height: 1.75; color: var(--ink); }

/* About */
.about-split { display: flex; gap: 56px; align-items: flex-start; }
.about-split .page-body { flex: 1.35; }
.about-media { flex: 1; position: sticky; top: 124px; }
.about-media img { border-radius: var(--radius); width: 100%; }

.values-grid { display: flex; flex-wrap: wrap; gap: 24px; }
.value-card { flex: 1; min-width: 240px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 30px; }
.value-letter {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 11px;
  background: var(--amber-wash); color: var(--amber-ink);
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 18px;
  margin-bottom: 16px;
}
.value-card h3 { font-size: 17.5px; font-weight: 600; margin-bottom: 8px; }
.value-card p { font-size: 14.5px; line-height: 1.7; color: var(--muted); margin: 0; }

.sector-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.sector-pills .pill {
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  font-size: 14.5px;
  color: var(--body);
  background: #fff;
}

/* Contact */
.contact-split { display: flex; gap: 56px; align-items: flex-start; }
.contact-side { flex: 0 0 340px; position: sticky; top: 124px; }
.contact-main { flex: 1; min-width: 0; }

.contact-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 16px;
  background: #fff;
  transition: border-color .18s ease, transform .18s ease;
}
.contact-card:hover { border-color: var(--navy); transform: translateY(-2px); }
.contact-card .label {
  display: block;
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 11.5px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber-ink);
  margin-bottom: 10px;
}
.contact-card .val {
  display: block;
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 19px;
  color: var(--navy); letter-spacing: -0.015em;
}
.contact-card .note { display: block; font-size: 13.5px; color: var(--muted); margin-top: 8px; line-height: 1.6; }

.placeholder { font-size: 13.5px; color: var(--muted-soft); text-align: center; padding: 24px; }
.placeholder-box {
  background: var(--paper-alt);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  padding: 56px 24px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

/* ============ FOOTER ============ */
.site-footer { background: var(--navy); padding: 64px 0 36px; }
.footer-top { display: flex; justify-content: space-between; gap: 56px; margin-bottom: 48px; flex-wrap: wrap; }
.footer-brand { max-width: 320px; }
.footer-logo { display: inline-block; margin-bottom: 16px; }
.footer-logo img, .footer-logo .custom-logo { max-height: 48px; width: auto; display: block; }
.footer-brand .site-logo { margin-bottom: 16px; display: block; }
.footer-brand p { margin: 0; font-size: 14.5px; line-height: 1.7; color: rgba(255,255,255,0.6); }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col .head {
  font-family: 'Sora', sans-serif; font-size: 11.5px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.42); margin-bottom: 4px;
}
.footer-col a { font-size: 14.5px; color: rgba(255,255,255,0.75); }
.footer-col a:hover { color: var(--amber); }
.footer-base { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 26px; font-size: 13px; color: rgba(255,255,255,0.42); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  :root { --gutter: 40px; }
  .services-split, .qual-split { gap: 48px; }
  .services-aside { flex: 0 0 280px; }
}

@media (max-width: 900px) {
  :root { --gutter: 24px; }
  .menu-toggle { display: block; }
  .primary-nav { display: none; }
  .primary-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    position: absolute;
    top: 92px; left: 0; right: 0;
    background: var(--navy);
    padding: 24px;
  }
  .primary-nav.is-open ul { flex-direction: column; gap: 4px; width: 100%; }
  .primary-nav.is-open a { padding: 9px 0; }
  .primary-nav.is-open ul ul {
    display: flex; position: static; background: transparent;
    box-shadow: none; padding: 0 0 0 16px; min-width: 0;
  }
  .primary-nav.is-open ul ul a { color: rgba(255,255,255,0.7); }
  .primary-nav.is-open ul ul a:hover { background: transparent; color: #fff; }

  .section, .section.tight { padding: 64px 0; }
  .hero { padding: 48px 0 0; }
  .hero-inner { flex-direction: column; gap: 48px; padding-bottom: 56px; }
  .hero h1 { max-width: none; }
  .float-card.top { left: -12px; }
  .float-card.bottom { right: -12px; }
  .work-row, .work-row.flip { flex-direction: column; gap: 28px; }
  .services-split, .qual-split, .about-split, .page-layout, .contact-split { flex-direction: column; gap: 32px; }
  .services-aside, .page-side, .contact-side, .about-media { position: static; flex: 1; width: 100%; }
  .page-hero-main { flex-direction: column; gap: 14px; }
  .hero-index { font-size: 38px; }
  .cta-band { padding: 40px 28px; }
  .cta-actions { width: 100%; }
  .page-hero { padding: 48px 0; }
}


/* ============ MOBILE TAB BAR ============ */
.mobile-tabs { display: none; }

@media (max-width: 900px) {
  .mobile-tabs {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 400;
    background: rgba(255,255,255,0.94);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-top: 1px solid var(--line);
    padding: 8px 4px calc(8px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -4px 20px rgba(11,27,63,0.07);
  }
  .mobile-tabs .tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 6px 2px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
    border-radius: 10px;
  }
  .mobile-tabs .tab svg { display: block; }
  .mobile-tabs .tab.is-active { color: var(--navy); }
  .mobile-tabs .tab.is-active svg { color: var(--amber-ink); }
  .mobile-tabs .tab:active { background: var(--paper-alt); }

  /* Room for the bar so it never covers the footer or a CTA. */
  body { padding-bottom: 72px; }
  .site-footer { margin-bottom: 0; }
}

@media (prefers-color-scheme: dark) {
  @media (max-width: 900px) {
    .mobile-tabs { background: rgba(251,250,247,0.96); }
  }
}


/* ============ PROMO LANDING PAGE ============ */
.landing-header { background: var(--navy); }
.landing-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 84px; }

.landing-hero { background: var(--navy); padding: 72px 0 80px; position: relative; overflow: hidden; }
.landing-hero .ring { position: absolute; border: 1px solid rgba(255,255,255,0.09); border-radius: 50%; pointer-events: none; }
.landing-hero .ring-1 { top: -160px; right: -90px; width: 460px; height: 460px; }
.landing-hero .ring-2 { top: -40px; right: 70px; width: 300px; height: 300px; border-color: rgba(255,255,255,0.07); }
.landing-hero .wrap { position: relative; }
.landing-hero-inner { display: flex; gap: 56px; align-items: center; }
.landing-copy { flex: 1.1; }
.landing-hero h1 { color: #fff; font-size: clamp(32px, 4.4vw, 52px); max-width: 15ch; margin-bottom: 24px; }
.landing-lead { font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.75); max-width: 46ch; margin: 0 0 32px; }

.promo-flag {
  display: inline-block;
  background: var(--amber);
  color: var(--navy);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.price-row { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.price {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: clamp(38px, 5vw, 58px);
  color: var(--amber);
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-note { font-size: 15px; color: rgba(255,255,255,0.62); }

.landing-media { flex: 1; }
.landing-media img { width: 100%; border-radius: var(--radius); }
.landing-placeholder {
  border: 1px dashed rgba(255,255,255,0.25);
  border-radius: var(--radius);
  padding: 72px 24px;
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.includes-grid { display: flex; flex-wrap: wrap; gap: 18px 32px; }
.include-item {
  flex: 1 1 320px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 16.5px;
  color: var(--ink);
  line-height: 1.6;
}
.include-item .check {
  width: 26px; height: 26px; border-radius: 8px;
  background: var(--green-wash); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}

.faq-list { max-width: 820px; }
.faq {
  border-top: 1px solid var(--line-strong);
  padding: 20px 0;
}
.faq:last-child { border-bottom: 1px solid var(--line-strong); }
.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 22px; color: var(--amber-ink); font-weight: 400; }
.faq[open] summary::after { content: '\2212'; }
.faq p { margin: 14px 0 0; font-size: 16px; line-height: 1.75; max-width: 70ch; }

.landing-footer { background: var(--navy); padding: 28px 0; }
.landing-footer .wrap {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13.5px; color: rgba(255,255,255,0.5); gap: 20px; flex-wrap: wrap;
}
.landing-footer a { color: rgba(255,255,255,0.75); }
.landing-footer a:hover { color: var(--amber); }

/* The landing page is standalone — no site tab bar competing with its CTA. */
.landing-page .mobile-tabs { display: none; }
.landing-page { padding-bottom: 0; }

@media (max-width: 900px) {
  .landing-hero-inner { flex-direction: column; gap: 40px; align-items: stretch; }
  .landing-hero { padding: 48px 0 56px; }
  .landing-page body { padding-bottom: 0; }
}


.fiverr-proof {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.82);
  transition: border-color .18s ease, background .18s ease;
}
.fiverr-proof:hover { border-color: var(--amber); background: rgba(255,255,255,0.04); }
.fiverr-proof .stars { color: var(--amber); display: flex; }
.fiverr-proof strong { color: #fff; font-weight: 600; }
.fiverr-proof .arrow { color: var(--amber); }

/* ============ MOBILE REFINEMENTS ============ */
@media (max-width: 900px) {

  /* Stats: sizing only — the single row is guaranteed by the base rule. */
  .hero-stats { gap: 12px; padding-top: 24px; }
  .hero-stats .value { font-size: clamp(18px, 5.6vw, 26px); }
  .hero-stats .label { font-size: clamp(10px, 2.8vw, 12px); line-height: 1.3; }

  /* Floating badges: absolute positioning only works beside a large
     image. On a phone they sit in the flow, under the image. */
  .hero-media { padding-top: 0; }
  .float-card.top,
  .float-card.bottom {
    position: static;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  }
  .hero-media .float-card { margin-top: 14px; }
  .hero-frame { min-height: 0; }
  .hero-frame img { height: auto; max-height: 300px; }

  /* Sector strip: a continuous marquee rather than a ragged wrap. */
  .sector-strip { padding: 20px 0; overflow: hidden; }
  .sector-strip .wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-right: 0;
    overflow: hidden;
  }
  .sector-strip .lbl { flex: none; }
  .sector-track {
    flex-wrap: nowrap;
    gap: 0;
    width: max-content;
    animation: ozonewebs-marquee 26s linear infinite;
  }
  .sector-track .item[aria-hidden="true"] { display: inline-block; }
  .sector-strip span.item {
    font-size: 14.5px;
    white-space: nowrap;
    padding-right: 18px;
  }
  .sector-strip span.item::after {
    content: '·';
    margin-left: 18px;
    color: rgba(255,255,255,0.32);
  }
  @keyframes ozonewebs-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  /* Respect a reduced-motion preference. */
  @media (prefers-reduced-motion: reduce) {
    .sector-track {
      animation: none;
      overflow-x: auto;
      width: 100%;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .sector-track::-webkit-scrollbar { display: none; }
  }

  /* Tighter hero rhythm. */
  .hero-inner { gap: 36px; padding-bottom: 44px; }
  .hero-lead { font-size: 16.5px; margin-bottom: 28px; }
  .hero-actions { margin-bottom: 32px; gap: 10px; }
  .hero-actions .btn {
    flex: 1 1 0;
    padding: 14px 10px;
    font-size: clamp(13px, 3.6vw, 15px);
    text-align: center;
  }
  .fiverr-proof { font-size: 13.5px; padding: 10px 14px; margin-bottom: 24px; }

  /* Third-party floating chat buttons sit above the tab bar rather
     than on top of it. */
  .wa__btn_popup,
  .ht-ctc,
  .ht-ctc-chat,
  [class*="whatsapp-chat"],
  [id*="whatsapp-button"],
  [class*="floating-wpp"] {
    bottom: 84px !important;
  }
}

/* Stats stay on one row at every width — three across, scaling down
   rather than wrapping to a second line. */
@media (max-width: 480px) {
  .hero-stats { gap: 8px; }
  .hero-actions { gap: 8px; }
  .hero-actions .btn { padding: 13px 8px; }
}

@media (max-width: 360px) {
  .hero-stats { gap: 6px; }
  .mobile-tabs .tab { font-size: 10px; }
}
