/* =========================================================================
   Qwezy Digitals — a South African software company
   Visual system: bold sans-serif, white / light-grey / dark-navy sections,
   bright flat geometric accents scattered across section edges, modular grids.
   No serif, no numbered labels, no pulse dots, no pill badges.
   ========================================================================= */

/* ---- 1. Tokens ------------------------------------------------------- */
:root {
  --white:   #ffffff;
  --paper:   #f3f4f7;   /* light grey band */
  --paper-2: #eceef2;
  --ink:     #0c1018;   /* near-black, cool */
  --navy:    #06090f;   /* dark sections — RedHailer app background */
  --navy-2:  #111827;   /* app surface */
  --text:    #495162;
  --text-soft:#7b8493;
  --line:    #c3cad4;   /* stronger outline for clearer section separation */
  --line-d:  rgba(255,255,255,.18);

  /* brand + accent palette (geometric shapes) */
  --red:     #e5142b;   /* primary brand */
  --red-d:   #c20f22;
  --yellow:  #ffc629;
  --teal:    #10c6a3;
  --blue:    #2f6bff;
  --pink:    #ff5c8a;

  --on-navy: #d7dded;
  --on-navy-soft:#8b96ab;

  --head: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --wrap: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --nav-h: 80px;
  --r: 14px;
  --r-sm: 8px;
  --shadow: 0 18px 50px -20px rgba(12,16,24,.25);
  --shadow-sm: 0 6px 20px -10px rgba(12,16,24,.18);
}

/* ---- 2. Base --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  color: var(--text);
  background: var(--white);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }
::selection { background: var(--red); color: #fff; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

h1, h2, h3, h4 { font-family: var(--head); color: var(--ink); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); font-weight: 800; line-height: 1.02; letter-spacing: -0.035em; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.45rem); }
p { max-width: 64ch; }
strong { color: var(--ink); font-weight: 600; }
.accent { color: var(--red); }

/* ---- 3. Layout ------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { position: relative; padding-block: clamp(64px, 9vw, 128px); overflow: hidden; }
.section.tight { padding-block: clamp(44px, 6vw, 80px); }
.band { background: var(--paper); }
/* clearer outlines between sections */
.section { border-top: 1px solid var(--line); }
.section.dark { border-top-color: var(--line-d); }
/* decorative geometric shapes removed */
.deco { display: none !important; }
.dark { background: var(--navy); color: var(--on-navy); }
.dark h1, .dark h2, .dark h3, .dark h4 { color: #fff; }
.dark p { color: var(--on-navy-soft); }
.dark .kicker { color: var(--on-navy-soft); }

.kicker {
  display: inline-block; font-family: var(--head); font-size: .8rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 18px;
}
.kicker.k-red { color: var(--red); }
.head-block { max-width: 760px; }
.head-block.center { margin-inline: auto; text-align: center; }
.head-block p { font-size: 1.1rem; margin-top: 18px; color: var(--text); }
.dark .head-block p { color: var(--on-navy-soft); }

.cols { display: grid; gap: clamp(24px, 3vw, 40px); }
.c2 { grid-template-columns: 1fr 1fr; }
.c3 { grid-template-columns: repeat(3, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }

/* ---- 4. Buttons & links --------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--head); font-weight: 600; font-size: .98rem;
  background: var(--red); color: #fff; padding: 15px 26px; border-radius: 0;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.btn:hover { background: var(--red-d); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(229,20,43,.6); }
.btn-dark { background: var(--ink); }
.btn-dark:hover { background: #000; box-shadow: 0 14px 30px -14px rgba(0,0,0,.5); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { background: transparent; border-color: var(--ink); transform: translateY(-2px); box-shadow: none; }
.dark .btn-ghost { color: #fff; border-color: rgba(255,255,255,.25); }
.dark .btn-ghost:hover { border-color: #fff; }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { background: #fff; box-shadow: var(--shadow); }
.btn-lg { padding: 17px 32px; font-size: 1.05rem; }

.arrow { display: inline-block; transition: transform .2s ease; }
.btn:hover .arrow, .alink:hover .arrow { transform: translateX(4px); }
.alink {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--head); font-weight: 600; color: var(--red); font-size: .98rem;
}
.alink:hover { color: var(--red-d); }
.dark .alink { color: #fff; }
.alink-ink { color: var(--ink); } .alink-ink:hover { color: var(--red); }

/* ---- 5. Geometric decoration ---------------------------------------- */
.deco { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.section > .wrap { position: relative; z-index: 1; }
.shape { position: absolute; pointer-events: none; }
.sq      { border-radius: 4px; }
.circle  { border-radius: 50%; }
.ring    { border-radius: 50%; background: transparent !important; border: 6px solid currentColor; }
.quarter { border-radius: 0 100% 0 0; }
.bar     { border-radius: 4px; }
.tri     { width: 0; height: 0; background: transparent !important; border-style: solid; border-width: 0 22px 38px 22px; border-color: transparent transparent currentColor transparent; }
.plus::before, .plus::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; }
.plus { position: absolute; }
.plus::before { width: 100%; height: 22%; top: 39%; left: 0; }
.plus::after  { height: 100%; width: 22%; left: 39%; top: 0; }
.dots { background-image: radial-gradient(currentColor 2.2px, transparent 2.3px); background-size: 18px 18px; }

.f-red    { background: var(--red); color: var(--red); }
.f-yellow { background: var(--yellow); color: var(--yellow); }
.f-teal   { background: var(--teal); color: var(--teal); }
.f-blue   { background: var(--blue); color: var(--blue); }
.f-pink   { background: var(--pink); color: var(--pink); }
.f-navy   { background: var(--navy); color: var(--navy); }
.f-white  { background: #fff; color: #fff; }
.o-50 { opacity: .5; } .o-30 { opacity: .3; } .o-15 { opacity: .15; }

/* ---- 6. Nav ---------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center; background: rgba(255,255,255,.86);
  backdrop-filter: saturate(160%) blur(12px); border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.nav.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; }
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo .mk { width: 30px; height: 30px; flex: none; }
.logo b { font-family: var(--head); font-weight: 700; font-size: 1.16rem; color: var(--ink); letter-spacing: -.02em; }
.logo b span { color: var(--red); }
.nav-links { display: flex; align-items: center; gap: clamp(16px, 2vw, 32px); }
.nav-links a { font-family: var(--head); font-size: .96rem; font-weight: 500; color: var(--text); transition: color .18s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 14px; }

.burger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; }
.burger span, .burger span::before, .burger span::after { content: ""; display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .22s; }
.burger span { position: relative; }
.burger span::before { position: absolute; top: -7px; } .burger span::after { position: absolute; top: 7px; }
body.menu-open .burger span { background: transparent; }
body.menu-open .burger span::before { top: 0; transform: rotate(45deg); }
body.menu-open .burger span::after { top: 0; transform: rotate(-45deg); }
.nav-mobile { position: fixed; top: var(--nav-h); left: 0; right: 0; height: calc(100dvh - var(--nav-h)); z-index: 99; background: #fff; padding: 24px var(--gutter); display: none; flex-direction: column; gap: 4px; overflow-y: auto; }
body.menu-open .nav-mobile { display: flex; } body.menu-open { overflow: hidden; }
.nav-mobile a { font-family: var(--head); font-size: 1.6rem; font-weight: 600; color: var(--ink); padding: 16px 0; border-bottom: 1px solid var(--line); }
.nav-mobile .btn { margin-top: 22px; align-self: flex-start; font-size: 1rem; }

/* ---- 7. Hero --------------------------------------------------------- */
.hero { position: relative; padding-top: clamp(48px, 8vw, 110px); padding-bottom: clamp(56px, 8vw, 110px); overflow: hidden; background: var(--navy); color: var(--on-navy); }
.hero .wrap { position: relative; z-index: 2; }

/* motion spheres + circle lines radiating outward, behind the hero */
.orbs { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.sphere { position: absolute; border-radius: 50%; will-change: transform; }
.sphere.s1 {
  width: clamp(300px, 38vw, 520px); aspect-ratio: 1; top: -12%; right: -4%;
  background: radial-gradient(circle at 34% 30%, #ff8088 0%, #ef2532 36%, #c10f22 66%, #850b18 95%, rgba(133,11,24,.55) 100%);
  box-shadow: 0 36px 90px -26px rgba(229,20,43,.5);
  animation: orb-a 17s ease-in-out infinite alternate;
}
.sphere.s2 {
  width: clamp(200px, 26vw, 360px); aspect-ratio: 1; bottom: -16%; left: -3%;
  background: radial-gradient(circle at 36% 30%, #ff6f78 0%, #e5142b 42%, #9c0c1d 95%, rgba(156,12,29,.5) 100%);
  box-shadow: 0 36px 90px -28px rgba(229,20,43,.45);
  animation: orb-b 22s ease-in-out infinite alternate;
}
/* the radiating circle lines */
.sphere::before, .sphere::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(255,92,102,.55); will-change: transform, opacity;
  animation: ring 3.8s ease-out infinite;
}
.sphere::after { animation-delay: 1.9s; }
.sphere.s2::before { animation-duration: 3.2s; }
.sphere.s2::after  { animation-duration: 3.2s; animation-delay: 1.6s; }
@keyframes ring {
  0%   { transform: scale(1);    opacity: .6; }
  80%  { opacity: .06; }
  100% { transform: scale(1.85); opacity: 0; }
}
@keyframes orb-a {
  0%   { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(-7%, 9%, 0) scale(1.16); }
}
@keyframes orb-b {
  0%   { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(9%, -7%, 0) scale(1.12); }
}
@media (prefers-reduced-motion: reduce) {
  .sphere { animation: none; }
  .sphere::before, .sphere::after { display: none; }
}
.hero h1 { max-width: 16ch; color: #fff; }
.hero-sub { font-size: clamp(1.1rem, 1.6vw, 1.35rem); color: #c5ccd9; max-width: 52ch; margin-top: 26px; }
.hero strong { color: #fff; }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.28); }
.hero .btn-ghost:hover { background: transparent; border-color: #fff; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-strip { margin-top: clamp(48px, 7vw, 88px); display: flex; flex-wrap: wrap; gap: 12px 36px; align-items: center; }
.hero-strip .lbl { font-family: var(--head); font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--text-soft); }
.hero-strip .chip { font-family: var(--head); font-weight: 600; color: var(--ink); font-size: 1rem; }
.hero-strip .dot-sep { width: 5px; height: 5px; border-radius: 50%; background: var(--red); }

/* ---- 8. Lineup — sectioned list (no cards, no grid) ----------------- */
.lineup { border-top: 1px solid var(--line); }
.lineup .li { padding: clamp(22px, 3vw, 36px) 0; border-bottom: 1px solid var(--line); }
.lineup .li h3 { display: flex; align-items: center; gap: 14px; font-size: clamp(1.3rem, 2vw, 1.7rem); margin-bottom: 12px; }
.lineup .li h3 i { width: 13px; height: 13px; border-radius: 3px; flex: none; display: inline-block; background: var(--red) !important; }
.lineup .li p { font-size: 1.06rem; color: var(--text); margin: 0; max-width: 74ch; }
.dark .lineup, .dark .lineup .li { border-color: var(--line-d); }
.dark .lineup .li p { color: var(--on-navy-soft); }

/* ---- 9. Product logo / shot ----------------------------------------- */
.rh-wrap { position: relative; }
.rh-shot { display: block; width: 100%; max-width: 440px; border-radius: var(--r); margin-inline: auto; box-shadow: var(--shadow); }
.bullets { display: grid; gap: 13px; margin: 24px 0 30px; }
.bullets li { position: relative; padding-left: 30px; color: var(--text); font-size: 1rem; }
.bullets li::before { content: ""; position: absolute; left: 0; top: .5em; width: 14px; height: 14px; border-radius: 4px; background: var(--red); }
.dark .bullets li { color: var(--on-navy); }
/* all bullet markers are red */
.bullets li::before { background: var(--red); }

/* ---- 10. Price list — sectioned (no boxes) -------------------------- */
.pricelist { border-top: 1px solid var(--line); }
.pricelist .pr { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; padding: clamp(18px, 2.4vw, 26px) 0; border-bottom: 1px solid var(--line); }
.pricelist .pr .pl strong { display: block; font-family: var(--head); font-weight: 600; font-size: 1.18rem; color: var(--ink); }
.pricelist .pr .pl span { font-size: .92rem; color: var(--text-soft); }
.pricelist .pr .pv { font-family: var(--head); font-weight: 700; font-size: clamp(1.3rem, 2.2vw, 1.7rem); color: var(--ink); white-space: nowrap; }
.pricelist .pr .pv.free { color: var(--teal); }

/* ---- 11. Article list — sectioned (no cards) ------------------------ */
.artlist { border-top: 1px solid var(--line); }
.artlist a { display: block; padding: clamp(26px, 3.4vw, 42px) 0; border-bottom: 1px solid var(--line); transition: padding-left .25s ease; }
.artlist a:hover { padding-left: 12px; }
.artlist .meta { display: flex; flex-wrap: wrap; gap: 8px 14px; align-items: center; font-family: var(--head); font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 12px; }
.artlist .meta .cat { color: var(--red); }
.artlist h3 { font-size: clamp(1.45rem, 2.7vw, 2.2rem); margin-bottom: 10px; max-width: 26ch; transition: color .2s ease; }
.artlist a:hover h3 { color: var(--red); }
.artlist p { font-size: 1.05rem; color: var(--text); max-width: 74ch; }
.artlist a .go { display: inline-flex; align-items: center; gap: .5em; margin-top: 16px; font-family: var(--head); font-weight: 600; font-size: .92rem; color: var(--red); }
.artlist a:hover .go .arrow { transform: translateX(4px); }

/* ---- 12. Article reading page --------------------------------------- */
.article { max-width: 740px; margin-inline: auto; }
.article .back { display: inline-flex; gap: .5em; font-family: var(--head); font-weight: 500; font-size: .92rem; color: var(--text-soft); margin-bottom: 26px; }
.article .back:hover { color: var(--red); }
.article .a-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center; font-size: .88rem; color: var(--text-soft); margin-bottom: 14px; }
.article .a-meta .cat { color: var(--red); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .76rem; }
.article h1 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin-bottom: 26px; }
.a-cover { height: clamp(180px, 30vw, 300px); border-radius: var(--r); margin-bottom: 40px; position: relative; overflow: hidden; }
.a-body { font-size: 1.14rem; line-height: 1.7; color: #2c3340; }
.a-body > p:first-of-type { font-size: 1.28rem; line-height: 1.5; color: var(--ink); }
.a-body p { margin-bottom: 24px; }
.a-body h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 44px 0 16px; }
.a-body h3 { font-size: 1.3rem; margin: 32px 0 12px; }
.a-body ul { display: grid; gap: 12px; margin: 0 0 26px; }
.a-body ul li { position: relative; padding-left: 28px; }
.a-body ul li::before { content: ""; position: absolute; left: 0; top: .55em; width: 13px; height: 13px; border-radius: 4px; background: var(--red); }
.a-body blockquote { margin: 36px 0; padding: 4px 0 4px 28px; border-left: 4px solid var(--red); font-family: var(--head); font-weight: 600; font-size: clamp(1.35rem, 2.4vw, 1.75rem); line-height: 1.3; color: var(--ink); }
.a-body strong { color: var(--ink); }
.a-body a { color: var(--red); border-bottom: 1px solid rgba(229,20,43,.3); }
.a-body a:hover { border-color: var(--red); }
.a-sign { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); font-family: var(--head); font-weight: 600; color: var(--text-soft); font-size: .95rem; }

/* ---- 13. Contact / forms -------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.detail { padding: 22px 0; border-top: 1px solid var(--line); }
.detail:first-child { border-top: 0; padding-top: 0; }
.detail .dl { font-family: var(--head); font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 8px; }
.detail .dv { font-family: var(--head); font-weight: 600; font-size: 1.2rem; color: var(--ink); }
.detail .dv a:hover { color: var(--red); }
.detail .dv span { display: block; font-family: var(--body); font-weight: 400; font-size: .98rem; color: var(--text); margin-top: 3px; }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: clamp(26px, 3.5vw, 40px); display: grid; gap: 20px; box-shadow: var(--shadow-sm); }
.f { display: grid; gap: 8px; }
.f label { font-family: var(--head); font-size: .82rem; font-weight: 600; color: var(--ink); }
.f input, .f select, .f textarea { font: inherit; font-size: 1rem; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 13px 15px; transition: border-color .18s, box-shadow .18s, background .18s; }
.f input:focus, .f select:focus, .f textarea:focus { outline: none; border-color: var(--red); background: #fff; box-shadow: 0 0 0 4px rgba(229,20,43,.1); }
.f textarea { resize: vertical; min-height: 130px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-note { font-size: .86rem; color: var(--text-soft); }
.form-ok { display: none; padding: 14px 18px; border-radius: var(--r-sm); background: #eafff6; border: 1px solid var(--teal); color: #067a5f; font-weight: 500; }
.form-ok.show { display: block; }

/* ---- 13b. Store badge + coming-soon modal --------------------------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.store-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 26px; }
.gp-badge { position: relative; display: inline-flex; align-items: center; gap: 12px; background: var(--ink); color: #fff; border-radius: 11px; padding: 9px 18px 9px 15px; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.gp-badge:hover { transform: translateY(-2px); background: #000; box-shadow: 0 14px 30px -14px rgba(0,0,0,.5); }
.gp-icon { width: 24px; height: 24px; flex: none; }
.gp-tx { display: flex; flex-direction: column; line-height: 1.06; text-align: left; }
.gp-tx small { font-size: .58rem; letter-spacing: .07em; text-transform: uppercase; opacity: .9; }
.gp-tx b { font-family: var(--head); font-weight: 600; font-size: 1.06rem; }
.gp-tag { position: absolute; top: -9px; right: -8px; background: var(--red); color: #fff; font-family: var(--head); font-size: .58rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; padding: 3px 8px; border-radius: 100px; }

.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(6,9,15,.62); backdrop-filter: blur(3px); }
.modal.open { display: flex; }
body.modal-open { overflow: hidden; }
.modal-card { position: relative; background: #fff; border-radius: 18px; width: 100%; max-width: 440px; padding: clamp(28px, 4vw, 40px); box-shadow: 0 40px 100px -24px rgba(0,0,0,.55); animation: modal-in .26s ease; }
@keyframes modal-in { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
.modal-close { position: absolute; top: 12px; right: 14px; width: 38px; height: 38px; border-radius: 9px; font-size: 1.7rem; line-height: 1; color: var(--text-soft); transition: .18s; }
.modal-close:hover { background: var(--paper); color: var(--ink); }
.modal-card h3 { font-size: clamp(1.35rem, 2.6vw, 1.8rem); margin: 12px 0 10px; }
.modal-card p { font-size: 1rem; color: var(--text); }
.modal-field { display: flex; gap: 10px; margin-top: 18px; }
.modal-field input { flex: 1; min-width: 0; font: inherit; font-size: 1rem; color: var(--ink); padding: 13px 14px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--paper); transition: border-color .18s, box-shadow .18s, background .18s; }
.modal-field input:focus { outline: none; border-color: var(--red); background: #fff; box-shadow: 0 0 0 4px rgba(229,20,43,.1); }
.modal-field .btn { white-space: nowrap; }
.modal .form-ok { margin-bottom: 14px; }
.modal .form-note { margin-top: 12px; }
@media (max-width: 480px) { .modal-field { flex-direction: column; } }

/* ---- 14. Footer ------------------------------------------------------ */
.footer { background: var(--navy); color: var(--on-navy-soft); padding-block: clamp(56px, 7vw, 88px) 32px; position: relative; overflow: hidden; }
.footer-top { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: clamp(28px, 4vw, 56px); padding-bottom: 48px; border-bottom: 1px solid var(--line-d); position: relative; z-index: 1; }
.footer .logo b { color: #fff; }
.footer-about p { font-size: .95rem; margin: 18px 0; max-width: 34ch; color: var(--on-navy-soft); }
.footer h5 { font-family: var(--head); font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer ul { display: grid; gap: 12px; }
.footer ul a { font-size: .96rem; color: var(--on-navy); } .footer ul a:hover { color: #fff; }
.foot-news p { font-size: .95rem; color: var(--on-navy-soft); margin-bottom: 14px; }
.foot-news form { display: flex; gap: 8px; }
.foot-news input { flex: 1; min-width: 0; font: inherit; font-size: .95rem; color: #fff; background: rgba(255,255,255,.06); border: 1px solid var(--line-d); border-radius: var(--r-sm); padding: 12px 14px; }
.foot-news input::placeholder { color: var(--on-navy-soft); }
.foot-news input:focus { outline: none; border-color: var(--red); }
.foot-news .btn { padding: 12px 18px; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; padding-top: 26px; font-size: .86rem; position: relative; z-index: 1; }
.footer-bottom .links { display: flex; gap: 22px; }
.footer-bottom a:hover { color: #fff; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a { width: 38px; height: 38px; border-radius: 9px; display: grid; place-items: center; background: rgba(255,255,255,.07); color: var(--on-navy); transition: .2s; }
.footer-social a:hover { background: var(--red); color: #fff; transform: translateY(-2px); }
.footer-social svg { width: 17px; height: 17px; }

/* ---- 15. Reveal ------------------------------------------------------ */
.rv { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.rv.in { opacity: 1; transform: none; }
.rv.d1 { transition-delay: .08s; } .rv.d2 { transition-delay: .16s; } .rv.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---- 16. Responsive -------------------------------------------------- */
@media (max-width: 940px) {
  .nav-links, .nav-right .btn { display: none; }
  .burger { display: flex; }
  .split { grid-template-columns: 1fr; }
  .split .rh-wrap { order: -1; }
  .c2, .c3 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .footer-top { grid-template-columns: 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
