@font-face {
  font-family: "Bahij Janna";
  src: url("public/fonts/Bahij_Janna-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Bahij Janna";
  src: url("public/fonts/Bahij_Janna-Bold.ttf") format("truetype");
  font-weight: 800;
  font-display: swap;
}

:root {
  --teal-900: #0f4444;
  --teal-800: #1e6b6b;
  --teal-700: #2b8a8a;
  --teal-500: #3da8a8;
  --teal-300: #7dcece;
  --teal-100: #e0f5f5;
  --lime-700: #6e9610;
  --lime-500: #95c11f;
  --lime-300: #bddf6a;
  --lime-100: #eef8d4;
  --charcoal: #2a2a2a;
  --gray-700: #4a4a4a;
  --gray-500: #6b6b6b;
  --gray-300: #aaaaaa;
  --gray-100: #f2f5f5;
  --white: #ffffff;
  --grad-teal: linear-gradient(135deg, #0f4444 0%, #2b8a8a 55%, #3da8a8 100%);
  --grad-lime: linear-gradient(135deg, #6e9610 0%, #95c11f 100%);
  --grad-dark: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  --shadow-sm: 0 2px 8px rgba(43, 138, 138, 0.1);
  --shadow-md: 0 8px 28px rgba(43, 138, 138, 0.15);
  --shadow-lg: 0 20px 60px rgba(43, 138, 138, 0.2);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Bahij Janna", Arial, sans-serif;
  direction: rtl;
  text-align: right;
  color: var(--charcoal);
  background: var(--white);
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 44px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(224, 245, 245, 0.7);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--grad-teal);
  box-shadow: var(--shadow-md);
  font-weight: 800;
}

.brand-copy strong,
.footer-brand strong {
  display: block;
  font-size: 1rem;
  color: var(--teal-900);
}

.brand-copy small {
  display: block;
  margin-top: 2px;
  color: var(--gray-500);
  font-size: 0.77rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-inline: auto;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 50px;
  color: var(--gray-700);
  font-size: 0.92rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  color: var(--teal-800);
  background: var(--teal-100);
}

.nav-cta,
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 50px;
  padding: 0 20px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.nav-cta {
  color: var(--white);
  background: var(--grad-teal);
  box-shadow: var(--shadow-md);
}

.btn-lime {
  color: var(--charcoal);
  background: var(--grad-lime);
  box-shadow: 0 14px 34px rgba(149, 193, 31, 0.26);
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-3px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--teal-100);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--teal-900);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.icon svg,
.card-icon svg,
.case-icon svg,
.feature-item svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  padding: 5px;
  border-radius: 50%;
  color: var(--white);
  background: #25d366;
  flex: 0 0 auto;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.28);
}

.whatsapp-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.whatsapp-icon path {
  fill: currentColor;
}

.icon-chart::before,
.icon-building::before,
.icon-check::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime-500);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 128px 0 72px;
  color: var(--white);
  overflow: hidden;
  background: var(--teal-900);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(189, 223, 106, 0.28), transparent 28%),
    linear-gradient(135deg, rgba(15, 68, 68, 0.98), rgba(15, 68, 68, 0.84) 45%, rgba(42, 42, 42, 0.72));
}

.hero-bg img {
  opacity: 0.52;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
}

.hero-pill,
.section-tag {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px 14px;
  border-radius: 50px;
  color: var(--teal-700);
  background: var(--teal-100);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-pill {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime-500);
  box-shadow: 0 0 0 6px rgba(149, 193, 31, 0.17);
}

.section-tag.lime {
  color: var(--lime-700);
  background: var(--lime-100);
}

.section-tag.white {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 5.4vw, 5.3rem);
  line-height: 1.13;
  font-weight: 800;
}

h1 span {
  display: block;
  color: var(--lime-300);
}

h2 {
  margin-bottom: 18px;
  color: var(--teal-900);
  font-size: clamp(2rem, 3.3vw, 3.45rem);
  line-height: 1.28;
  font-weight: 800;
}

h3 {
  color: var(--teal-900);
  font-size: 1.25rem;
  line-height: 1.45;
}

p {
  color: var(--gray-500);
  line-height: 1.85;
}

.hero-lead {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.proof-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.proof-chips span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-card {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-card::after,
.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(15, 68, 68, 0.76));
  pointer-events: none;
}

.visual-caption {
  position: absolute;
  z-index: 1;
  right: 24px;
  left: 24px;
  bottom: 24px;
  display: grid;
  gap: 6px;
  padding: 20px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: rgba(15, 68, 68, 0.78);
  backdrop-filter: blur(16px);
}

.visual-caption span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.ticker {
  overflow: hidden;
  background: var(--grad-dark);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 36px;
  padding: 18px 0;
  animation: ticker 28s linear infinite;
}

.ticker span {
  position: relative;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.ticker span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-inline-end: 10px;
  border-radius: 50%;
  background: var(--lime-500);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(50%);
  }
}

.section {
  padding: 96px 0;
}

.gray-band {
  background: var(--gray-100);
}

.teal-band {
  position: relative;
  color: var(--white);
  background: var(--grad-teal);
  overflow: hidden;
}

.teal-band::before {
  content: "";
  position: absolute;
  inset: -20% 50% auto -15%;
  height: 420px;
  border-radius: 50%;
  background: rgba(189, 223, 106, 0.18);
  filter: blur(10px);
}

.light h2,
.light p {
  color: var(--white);
}

.light p {
  color: rgba(255, 255, 255, 0.74);
}

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

.split.reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.image-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.hero-card > img,
.image-card > img,
.section-showcase > img,
.method-visual > img,
.case-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.outputs-image {
  min-height: 560px;
}

.outputs-image > img {
  object-position: center center;
}

.mini-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.mini-proof div {
  padding: 17px;
  border-radius: var(--radius-md);
  background: var(--teal-100);
}

.mini-proof strong,
.mini-proof span {
  display: block;
}

.mini-proof strong {
  color: var(--teal-900);
  margin-bottom: 4px;
}

.mini-proof span {
  color: var(--gray-700);
  font-size: 0.9rem;
}

.section-head {
  max-width: 790px;
  margin-bottom: 34px;
}

.process-grid,
.service-grid,
.method-grid,
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.section-showcase {
  position: relative;
  min-height: 360px;
  margin-top: 28px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.section-showcase::after,
.case-banner::after,
.method-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 68, 68, 0.78), rgba(15, 68, 68, 0.18));
  pointer-events: none;
}

.section-showcase > div {
  position: absolute;
  z-index: 1;
  right: 26px;
  bottom: 26px;
  max-width: 520px;
  display: grid;
  gap: 6px;
  padding: 22px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: rgba(15, 68, 68, 0.78);
  backdrop-filter: blur(16px);
}

.section-showcase strong {
  font-size: 1.25rem;
}

.section-showcase span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.service-showcase {
  min-height: 420px;
}

.process-card,
.service-card,
.case-card,
.contact-form {
  border: 1.5px solid var(--teal-100);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.process-card:hover,
.service-card:hover,
.case-card:hover {
  transform: translateY(-8px);
  border-color: var(--teal-300);
  box-shadow: var(--shadow-md);
}

.process-card,
.service-card,
.case-card {
  padding: 28px;
}

.process-card span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--teal-900);
  background: var(--lime-100);
  font-weight: 800;
}

.card-icon,
.case-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  color: var(--white);
  background: var(--grad-teal);
  box-shadow: var(--shadow-md);
}

.card-icon svg,
.case-icon svg {
  width: 30px;
  height: 30px;
}

.service-name,
.case-card > span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 50px;
  color: var(--lime-700);
  background: var(--lime-100);
  font-size: 0.78rem;
  font-weight: 800;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-right: 22px;
  color: var(--gray-700);
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 11px;
  right: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime-500);
}

.method-grid {
  position: relative;
  grid-template-columns: repeat(5, 1fr);
}

.method-visual {
  position: relative;
  min-height: 430px;
  margin-top: 26px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.method-card {
  min-height: 255px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(16px);
}

.method-card b {
  display: block;
  margin-bottom: 16px;
  color: var(--lime-300);
  font-size: 2.6rem;
  line-height: 1;
}

.method-card h3 {
  color: var(--white);
}

.method-card p {
  color: rgba(255, 255, 255, 0.74);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
}

.timeline-item span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--charcoal);
  background: var(--grad-lime);
  font-weight: 800;
}

.timeline-item div {
  padding: 0 0 18px;
  border-bottom: 1px solid var(--teal-100);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.feature-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border: 1.5px solid var(--teal-100);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.feature-item span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--white);
  background: var(--grad-teal);
}

.feature-item svg {
  width: 19px;
  height: 19px;
}

.case-grid {
  grid-template-columns: repeat(3, 1fr);
}

.case-banner {
  position: relative;
  min-height: 380px;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.case-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--teal-700);
  font-weight: 800;
}

.sectors-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(15, 68, 68, 0.96), rgba(42, 42, 42, 0.9)),
    url("public/images/generated/bassma-sectors-business.jpg") center/cover;
}

.sector-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sector-grid span {
  padding: 13px 18px;
  border-radius: 50px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  font-weight: 800;
}

.contact-cta {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  color: var(--white);
  background: var(--teal-900);
}

.contact-bg {
  position: absolute;
  inset: 0;
}

.contact-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(149, 193, 31, 0.26), transparent 30%),
    linear-gradient(135deg, rgba(15, 68, 68, 0.97), rgba(42, 42, 42, 0.86));
}

.contact-bg img {
  opacity: 0.48;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.contact-copy h2,
.contact-copy p {
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-points {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.contact-points li {
  position: relative;
  padding-right: 24px;
  color: rgba(255, 255, 255, 0.84);
}

.contact-points li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime-500);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
}

.field {
  display: grid;
  gap: 8px;
}

.field small {
  color: var(--gray-500);
  font-size: 0.78rem;
}

.field-full {
  grid-column: 1 / -1;
}

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

label {
  color: var(--teal-900);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1.5px solid var(--teal-100);
  border-radius: var(--radius-md);
  padding: 13px 14px;
  outline: none;
  color: var(--charcoal);
  background: var(--gray-100);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.phone-control {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  overflow: hidden;
  border: 1.5px solid var(--teal-100);
  border-radius: var(--radius-md);
  background: var(--gray-100);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.phone-control:focus-within {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(61, 168, 168, 0.14);
}

.phone-control span {
  height: 100%;
  display: grid;
  place-items: center;
  padding: 0 14px;
  color: var(--teal-900);
  background: var(--teal-100);
  font-weight: 800;
  direction: ltr;
}

.phone-control input {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  direction: ltr;
  text-align: left;
}

.phone-control input:focus {
  box-shadow: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(61, 168, 168, 0.14);
}

textarea {
  resize: vertical;
}

.form-message {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--teal-800);
  font-weight: 800;
}

.form-message.error {
  color: #b42318;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 120px 0 64px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 22%, rgba(189, 223, 106, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(15, 68, 68, 0.98), rgba(42, 42, 42, 0.92)),
    url("public/images/generated/bassma-contact-consultation.jpg") center/cover;
}

.thank-you-card {
  max-width: 760px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-xl);
  background: rgba(15, 68, 68, 0.76);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.success-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--charcoal);
  background: var(--grad-lime);
  box-shadow: 0 18px 38px rgba(149, 193, 31, 0.28);
}

.success-mark svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thank-you-card h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.8vw, 4.6rem);
}

.thank-you-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
}

.thank-you-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.thank-you-steps div {
  padding: 17px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
}

.thank-you-steps strong {
  display: block;
  margin-bottom: 5px;
  color: var(--lime-300);
}

.thank-you-steps span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  left: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 16px 38px rgba(37, 211, 102, 0.34);
  animation: pulse 2.5s ease-in-out infinite;
}

.floating-whatsapp .whatsapp-icon {
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

@keyframes pulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.site-footer {
  padding: 44px 0;
  color: var(--white);
  background: var(--charcoal);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer .brand-logo {
  width: 38px;
  height: 38px;
}

.footer-brand strong {
  color: var(--white);
}

.site-footer p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255, 255, 255, 0.62);
}

.footer-links a:hover {
  color: var(--lime-300);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-inline-start: auto;
  }

  .nav-links.is-open {
    position: fixed;
    inset: 72px 0 auto;
    display: grid;
    gap: 8px;
    padding: 18px 22px 24px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--teal-100);
    box-shadow: var(--shadow-md);
  }

  .hero-grid,
  .split,
  .split.reverse,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .image-card,
  .method-visual {
    min-height: 420px;
  }

  .process-grid,
  .service-grid,
  .case-grid,
  .method-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 58px;
  }

  .hero-card,
  .image-card,
  .section-showcase,
  .method-visual,
  .case-banner {
    min-height: 320px;
    border-radius: var(--radius-lg);
  }

  .section,
  .contact-cta {
    padding: 68px 0;
  }

  .process-grid,
  .service-grid,
  .case-grid,
  .method-grid,
  .contact-form,
  .mini-proof {
    grid-template-columns: 1fr;
  }

  .contact-actions .btn,
  .hero-actions .btn {
    width: 100%;
  }

  .footer-grid {
    display: grid;
  }
}
