﻿:root {
  --ink: #050505;
  --muted: #606060;
  --line: #e8e8e8;
  --paper: #ffffff;
  --soft: #f7f7f5;
  --midnight: #000000;
  --charcoal: #111111;
  --gold: #FDC902;
  --gold-deep: #d9aa00;
  --gold-soft: #fff7d6;
  --gold-line: rgba(253, 201, 2, .34);
  --shadow: 0 22px 70px rgba(0, 0, 0, .11);
  --radius: 8px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-weight: 300;
}

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(253, 201, 2, .18);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0;
}

.brand-mark {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .16);
}

.brand small {
  display: block;
  margin-top: -3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #222;
  font-size: 13.5px;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding: 27px 0;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .2);
}

.btn-primary:hover {
  border-color: var(--gold);
  box-shadow: 0 18px 38px rgba(253, 201, 2, .16), 0 16px 34px rgba(0, 0, 0, .2);
}

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.btn-gold {
  background: var(--gold);
  color: #050505;
  box-shadow: 0 16px 34px rgba(253, 201, 2, .3);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: auto;
  display: grid;
  align-items: center;
  color: #fff;
  background: var(--midnight);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .95) 0%, rgba(0, 0, 0, .78) 45%, rgba(0, 0, 0, .2) 100%),
    url("https://images.pexels.com/photos/36765727/pexels-photo-36765727.jpeg?auto=compress&cs=tinysrgb&w=1800") center / cover;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(0deg, var(--paper), transparent);
  opacity: .16;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(320px, .82fr);
  gap: 48px;
  padding: 52px 0 58px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  color: #f4f4f4;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.section .eyebrow,
.card .eyebrow {
  color: #050505;
}

.hero .eyebrow,
.page-hero .eyebrow,
.section.dark .eyebrow,
.map-box .eyebrow {
  color: #f4f4f4;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 600;
}

h1 {
  max-width: 820px;
  font-size: clamp(38px, 4.8vw, 64px);
}

h2 {
  font-size: clamp(32px, 4.6vw, 58px);
}

h3 {
  font-size: 22px;
  font-weight: 600;
}

p {
  margin: 0;
  font-weight: 300;
}

.hero p {
  max-width: 680px;
  margin-top: 20px;
  color: #f0f0f0;
  font-size: clamp(17px, 1.8vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-panel {
  padding: 26px;
  border: 1px solid rgba(253, 201, 2, .28);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(253, 201, 2, .16), rgba(255, 255, 255, .08) 48%, rgba(0, 0, 0, .22));
  box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
  backdrop-filter: blur(18px);
}

.global-visual {
  position: relative;
  min-height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #050505;
}

.global-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .72));
}

.global-visual img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.flag-grid {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.flag-grid span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(253, 201, 2, .28);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, .56);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  backdrop-filter: blur(12px);
}

.flag-grid b {
  font-size: 18px;
  line-height: 1;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(253, 201, 2, .28);
}

.stat {
  padding: 14px 16px;
  background: rgba(5, 5, 5, .46);
}

.stat strong {
  display: block;
  color: var(--gold);
  font-size: 23px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 6px;
  color: #ededed;
  font-size: 12px;
  font-weight: 400;
}

.section {
  padding: 104px 0;
}

.section.soft {
  background: var(--soft);
}

.section.brand-section {
  color: #050505;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .28), rgba(253, 201, 2, 0) 42%),
    var(--gold);
}

.section.brand-section .eyebrow,
.section.brand-section h2,
.section.brand-section h3,
.section.brand-section p,
.section.brand-section .section-head p,
.section.brand-section .card p,
.section.brand-section .feature-list li,
.section.brand-section .service-list li,
.section.brand-section .legal-list li {
  color: #050505;
}

.section.brand-section .eyebrow::before,
.section.brand-section .service-list li::before,
.section.brand-section .feature-list li::before,
.section.brand-section .legal-list li::before {
  background: #050505;
}

.section.brand-section .card {
  border-color: rgba(0, 0, 0, .2);
  background: rgba(255, 255, 255, .34);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}

.section.brand-section .btn,
.section.brand-section .btn-primary,
.section.brand-section .btn-gold {
  background: #050505;
  color: #fff;
  border-color: #050505;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .2);
}

.section.brand-section .btn-secondary {
  background: #fff;
  color: #050505;
  border-color: rgba(0, 0, 0, .22);
}

.section.dark {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, .98), rgba(17, 17, 17, .94)),
    url("https://images.pexels.com/photos/4344116/pexels-photo-4344116.jpeg?auto=compress&cs=tinysrgb&w=1700") center / cover fixed;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.section-head p {
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
}

.dark .section-head p { color: #e8e8e8; }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 45px rgba(0, 0, 0, .055);
}

.card.pad {
  padding: 28px;
}

.card.pad {
  border-top-color: var(--gold-line);
}

.office-card {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: var(--midnight);
}

.office-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .88), rgba(0, 0, 0, .18));
}

.office-card.london {
  background: url("https://images.pexels.com/photos/12903292/pexels-photo-12903292.jpeg?auto=compress&cs=tinysrgb&w=1000") center / cover;
}

.office-card.nigeria {
  background: url("https://images.pexels.com/photos/7691694/pexels-photo-7691694.jpeg?auto=compress&cs=tinysrgb&w=1000") center / cover;
}

.office-card > div {
  position: relative;
  z-index: 1;
  padding: 32px;
}

.office-address {
  margin: 10px 0 12px;
  color: #f3f3f3;
  font-size: 14px;
  font-weight: 400;
}

.tag {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  border: 1px solid rgba(253, 201, 2, .42);
  border-radius: 999px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: var(--radius);
  color: #050505;
  background: var(--gold);
  box-shadow: 0 12px 24px rgba(253, 201, 2, .24);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
}

.icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon:empty::before { content: ""; }
.menu-toggle:empty::before { content: "Menu"; font-size: 12px; font-weight: 600; }

.card p,
.feature-list li,
.service-list li {
  color: var(--muted);
  font-weight: 300;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-list,
.feature-list,
.legal-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.service-list li,
.feature-list li,
.legal-list li {
  position: relative;
  padding-left: 22px;
}

.service-list li::before,
.feature-list li::before,
.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.service-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.image-stack {
  position: relative;
}

.image-stack img {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.floating-note {
  position: absolute;
  right: -22px;
  bottom: 36px;
  max-width: 260px;
  padding: 20px;
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.floating-note strong {
  display: block;
  margin-bottom: 6px;
  color: #050505;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.why-item {
  min-height: 150px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  font-weight: 500;
}

.why-item:hover {
  background: var(--gold-soft);
}

.why-item span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
}

.testimonial {
  padding: 30px;
  border: 1px solid rgba(253, 201, 2, .26);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(253, 201, 2, .12), rgba(255, 255, 255, .06));
  backdrop-filter: blur(14px);
}

.testimonial p {
  color: #f2f2f2;
  font-size: 17px;
}

.testimonial strong {
  display: block;
  margin-top: 22px;
  color: #fff;
}

.testimonial span {
  color: #d9d9d9;
  font-size: 13px;
}

.cta {
  padding: 72px;
  border-radius: var(--radius);
  color: #fff;
  border: 1px solid rgba(253, 201, 2, .28);
  background:
    linear-gradient(105deg, rgba(0, 0, 0, .96), rgba(17, 17, 17, .82) 62%, rgba(253, 201, 2, .28)),
    url("https://images.pexels.com/photos/6913223/pexels-photo-6913223.jpeg?auto=compress&cs=tinysrgb&w=1500") center / cover;
}

.cta p {
  max-width: 720px;
  margin-top: 18px;
  color: #f0f0f0;
  font-size: 18px;
}

.page-hero {
  padding: 110px 0 74px;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(0, 0, 0, .95), rgba(0, 0, 0, .64)),
    url("https://images.pexels.com/photos/5256687/pexels-photo-5256687.jpeg?auto=compress&cs=tinysrgb&w=1800") center / cover;
}

.page-hero p {
  max-width: 760px;
  margin-top: 22px;
  color: #f0f0f0;
  font-size: 19px;
}

.process {
  counter-reset: step;
}

.process .card {
  counter-increment: step;
}

.process .card::before {
  content: "0" counter(step);
  display: block;
  margin-bottom: 26px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 32px;
  align-items: start;
}

form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: #151515;
  font-size: 13px;
  font-weight: 500;
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 15px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(253, 201, 2, .16);
}

textarea { min-height: 150px; resize: vertical; }

.map-box {
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 30px;
  color: #fff;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75)),
    url("https://images.pexels.com/photos/8828607/pexels-photo-8828607.jpeg?auto=compress&cs=tinysrgb&w=1300") center / cover;
}

.map-box,
.map-box .eyebrow,
.map-box h2,
.map-box p {
  color: #fff;
}

.footer {
  position: relative;
  overflow: hidden;
  color: #c8d3e0;
  background: var(--midnight);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.pexels.com/photos/3184432/pexels-photo-3184432.jpeg?auto=compress&cs=tinysrgb&w=1700") center / cover;
  opacity: .22;
  filter: grayscale(.12);
}

.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .96), rgba(0, 0, 0, .82) 52%, rgba(253, 201, 2, .24)),
    linear-gradient(180deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .95));
}

.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr .8fr;
  gap: 34px;
  padding: 64px 0;
}

.footer-main > div {
  padding-top: 18px;
  border-top: 1px solid rgba(253, 201, 2, .34);
}

.footer h3 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 16px;
}

.footer p,
.footer a {
  color: #dddddd;
  font-size: 14px;
  font-weight: 300;
}

.footer-office-label {
  display: inline-block;
  margin-bottom: 4px;
  color: #fff;
  font-weight: 700;
}

.office-contact {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 4px;
}

.office-contact::before {
  content: "";
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  background: var(--gold);
  mask: center / contain no-repeat;
  -webkit-mask: center / contain no-repeat;
}

.whatsapp-contact::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.04 3.5a8.5 8.5 0 0 0-7.3 12.86L3.5 20.5l4.25-1.18a8.5 8.5 0 1 0 4.29-15.82Zm0 1.7a6.8 6.8 0 0 1 0 13.6 6.7 6.7 0 0 1-3.46-.96l-.34-.2-2.2.61.62-2.12-.22-.35a6.8 6.8 0 0 1 5.6-10.58Zm-2.42 3.7c-.16 0-.4.06-.61.3-.21.23-.8.78-.8 1.9 0 1.13.82 2.22.94 2.37.12.16 1.6 2.57 3.98 3.5 1.97.78 2.38.62 2.8.58.44-.04 1.4-.57 1.6-1.12.2-.55.2-1.02.14-1.12-.06-.1-.22-.16-.47-.28-.25-.13-1.46-.72-1.68-.8-.23-.08-.4-.12-.56.12-.16.25-.64.8-.78.96-.14.16-.29.18-.53.06-.25-.12-1.04-.38-1.98-1.22-.73-.65-1.22-1.45-1.36-1.7-.14-.24-.02-.38.1-.5.12-.11.25-.29.37-.43.12-.14.16-.25.25-.41.08-.16.04-.31-.02-.44-.06-.12-.55-1.36-.76-1.85-.2-.48-.4-.41-.59-.42Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.04 3.5a8.5 8.5 0 0 0-7.3 12.86L3.5 20.5l4.25-1.18a8.5 8.5 0 1 0 4.29-15.82Zm0 1.7a6.8 6.8 0 0 1 0 13.6 6.7 6.7 0 0 1-3.46-.96l-.34-.2-2.2.61.62-2.12-.22-.35a6.8 6.8 0 0 1 5.6-10.58Zm-2.42 3.7c-.16 0-.4.06-.61.3-.21.23-.8.78-.8 1.9 0 1.13.82 2.22.94 2.37.12.16 1.6 2.57 3.98 3.5 1.97.78 2.38.62 2.8.58.44-.04 1.4-.57 1.6-1.12.2-.55.2-1.02.14-1.12-.06-.1-.22-.16-.47-.28-.25-.13-1.46-.72-1.68-.8-.23-.08-.4-.12-.56.12-.16.25-.64.8-.78.96-.14.16-.29.18-.53.06-.25-.12-1.04-.38-1.98-1.22-.73-.65-1.22-1.45-1.36-1.7-.14-.24-.02-.38.1-.5.12-.11.25-.29.37-.43.12-.14.16-.25.25-.41.08-.16.04-.31-.02-.44-.06-.12-.55-1.36-.76-1.85-.2-.48-.4-.41-.59-.42Z'/%3E%3C/svg%3E");
}

.email-contact::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6h16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2Zm0 2v.2l8 5.1 8-5.1V8H4Zm16 8V10.6l-7.46 4.76a1 1 0 0 1-1.08 0L4 10.6V16h16Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6h16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2Zm0 2v.2l8 5.1 8-5.1V8H4Zm16 8V10.6l-7.46 4.76a1 1 0 0 1-1.08 0L4 10.6V16h16Z'/%3E%3C/svg%3E");
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(253, 201, 2, .18);
  color: #bfbfbf;
  font-size: 13px;
}

[data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    inset: 76px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 8px; }
  .nav-links a::after { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .nav-actions .btn { display: none; }
  .hero-grid,
  .split,
  .contact-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .grid-4,
  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-head { display: block; }
  .section-head p { margin-top: 18px; }
  .floating-note { right: 18px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1160px); }
  .section { padding: 72px 0; }
  .hero { min-height: auto; }
  .hero-grid { padding: 62px 0 72px; }
  .hero-panel { padding: 16px; }
  .global-visual { min-height: 270px; }
  .global-visual img { height: 270px; }
  .stats,
  .grid-2,
  .grid-3,
  .grid-4,
  .why-grid {
    grid-template-columns: 1fr;
  }
  .cta { padding: 34px 24px; }
  .page-hero { padding: 82px 0 58px; }
  .footer-bottom { flex-direction: column; }
  .brand small { display: none; }
}

