:root {
  --navy: #07172f;
  --navy-2: #0d2545;
  --blue: #123965;
  --orange: #f47a20;
  --orange-2: #ff9b4a;
  --white: #ffffff;
  --gray-50: #f7f9fc;
  --gray-100: #edf1f6;
  --gray-300: #cbd5e1;
  --gray-600: #5b6676;
  --gray-800: #1c2533;
  --shadow: 0 24px 70px rgba(7, 23, 47, 0.14);
  --radius: 8px;
  --container: min(1120px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(203, 213, 225, 0.65);
  backdrop-filter: blur(18px);
}

.navbar {
  width: var(--container);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
}

.brand-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(203, 213, 225, 0.72);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(7, 23, 47, 0.12);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.05rem;
  line-height: 1.1;
}

.brand small {
  color: var(--gray-600);
  font-size: 0.76rem;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #314158;
  font-size: 0.93rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 26px 0;
}

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

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 23, 47, 0.96) 0%, rgba(7, 23, 47, 0.84) 41%, rgba(7, 23, 47, 0.35) 72%, rgba(7, 23, 47, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 23, 47, 0.88), rgba(7, 23, 47, 0.1) 38%, rgba(7, 23, 47, 0.2));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 86px 0 72px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: var(--orange);
}

.hero h1,
.section h2,
.cta h2 {
  margin: 0;
  color: inherit;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  margin-top: 20px;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  font-weight: 800;
}

.hero p {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
}

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

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(244, 122, 32, 0.28);
}

.btn-primary:hover {
  background: #e96f16;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-light {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--navy);
  background: var(--white);
}

.btn-download {
  border-color: rgba(255, 122, 45, 0.28);
  color: var(--orange);
  background: #fff3ea;
}

.btn-download:hover {
  background: #ffe9dc;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 700px;
  margin-top: 58px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.hero-metrics div {
  padding: 18px;
  background: rgba(7, 23, 47, 0.34);
}

.hero-metrics strong {
  display: block;
  color: var(--white);
  font-size: 1.2rem;
}

.hero-metrics span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.section {
  padding: 104px 0;
}

.section:nth-of-type(even) {
  background: var(--gray-50);
}

.section-head {
  max-width: 760px;
  margin-bottom: 44px;
}

.section h2,
.cta h2 {
  margin-top: 14px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.45rem);
  font-weight: 800;
}

.section p,
.cta p {
  color: var(--gray-600);
}

.split {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 72px;
  align-items: start;
}

.split-reverse {
  grid-template-columns: 1fr 0.94fr;
  align-items: center;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.about-portrait {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 58%, rgba(7, 23, 47, 0.9) 100%),
    var(--white);
  box-shadow: var(--shadow);
}

.about-portrait::before {
  position: absolute;
  inset: 22px 22px auto auto;
  width: 86px;
  height: 86px;
  content: "";
  border-top: 4px solid var(--orange);
  border-right: 4px solid var(--orange);
  opacity: 0.82;
  z-index: 1;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
}

.portrait-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(7, 23, 47, 0.76);
  backdrop-filter: blur(14px);
}

.portrait-caption strong,
.portrait-caption span {
  display: block;
}

.portrait-caption strong {
  color: var(--white);
  line-height: 1.25;
}

.portrait-caption span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 600;
}

.about-panel {
  padding-left: 34px;
  border-left: 3px solid var(--orange);
}

.about-panel p:first-child {
  margin-top: 0;
}

.leadership-statement {
  margin-top: 28px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 20px 45px rgba(7, 23, 47, 0.12);
}

.leadership-statement strong,
.leadership-statement span {
  display: block;
}

.leadership-statement strong {
  max-width: 720px;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.35;
}

.leadership-statement span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}


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

.service-card,
.project-card,
.business-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(7, 23, 47, 0.06);
}

.service-card {
  min-height: 312px;
  padding: 30px;
}

.icon-box {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 14px;
  background: #fff3ea;
  box-shadow: 0 14px 28px rgba(255, 122, 45, 0.13);
  overflow: hidden;
}

.icon-box img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.service-card h3,
.business-item h3,
.project-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  line-height: 1.2;
}

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

.business-item {
  min-height: 232px;
  padding: 22px;
  grid-column: span 2;
}

.business-icon {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 12px;
  background: var(--navy);
  box-shadow: 0 14px 28px rgba(7, 23, 47, 0.12);
  overflow: hidden;
}

.business-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.advantage-list {
  display: grid;
  gap: 14px;
}

.advantage-list div {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 14px;
  align-items: start;
  padding: 20px 22px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(7, 23, 47, 0.05);
}

.advantage-list span {
  width: 12px;
  height: 12px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 7px #fff0e7;
}

.advantage-list p {
  margin: 0;
  color: var(--gray-800);
  font-weight: 600;
}

.project-card {
  position: relative;
  min-height: 318px;
  padding: 28px;
  overflow: hidden;
}

.portfolio-logo-showcase {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.project-card::before {
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--orange), var(--blue));
}

.project-tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--gray-50);
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.project-logo-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

.client-logo-card {
  display: grid;
  min-height: 118px;
  place-items: center;
  gap: 10px;
  padding: 14px 12px;
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  background: var(--white);
  text-align: center;
  box-shadow: 0 12px 26px rgba(7, 23, 47, 0.05);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.client-logo-card:hover {
  border-color: rgba(255, 122, 45, 0.28);
  background: #fff8f3;
  transform: translateY(-2px);
}

.client-logo-card img {
  width: 100%;
  max-width: 152px;
  height: 58px;
  object-fit: contain;
}

.client-logo-card.logo-fallback img {
  display: none;
}

.client-logo-card.logo-fallback span {
  color: var(--navy);
  font-size: 0.86rem;
}

.client-logo-card span {
  color: var(--gray-600);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
}

.text-logo-card strong {
  color: var(--navy);
  font-size: 1.35rem;
  letter-spacing: 0;
}

.portfolio-project-list {
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.portfolio-list-title {
  display: flex;
  gap: 18px;
  align-items: baseline;
  justify-content: space-between;
  padding: 18px 22px;
  background: linear-gradient(180deg, var(--white), var(--gray-50));
}

.portfolio-list-title span {
  color: var(--navy);
  font-weight: 900;
}

.portfolio-list-title p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.92rem;
}

.portfolio-list-head,
.portfolio-row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(280px, 1.4fr) minmax(100px, 0.55fr) minmax(70px, 0.35fr);
  gap: 18px;
  align-items: center;
}

.portfolio-list-head {
  padding: 16px 22px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-row {
  padding: 18px 22px;
  border-top: 1px solid var(--gray-100);
}

.portfolio-row span:first-child {
  color: var(--navy);
  font-weight: 850;
}

.portfolio-row p {
  margin: 0;
  color: var(--gray-700);
  font-size: 0.94rem;
  line-height: 1.55;
}

.portfolio-row span:nth-child(3) {
  color: var(--gray-600);
  font-weight: 700;
}

.portfolio-row strong {
  justify-self: start;
  padding: 7px 10px;
  border-radius: 8px;
  background: #fff3ea;
  color: var(--orange);
  font-size: 0.82rem;
}

.timeline-list {
  position: relative;
  display: grid;
  gap: 0;
  padding: 8px 22px 22px;
}

.timeline-list::before {
  position: absolute;
  top: 32px;
  bottom: 34px;
  left: 58px;
  width: 2px;
  content: "";
  background: linear-gradient(180deg, var(--orange), var(--blue));
  opacity: 0.38;
}

.timeline-year {
  position: relative;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 24px;
  padding: 18px 0;
}

.timeline-marker {
  position: sticky;
  top: 96px;
  z-index: 1;
  display: grid;
  width: 74px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 122, 45, 0.24);
  border-radius: 999px;
  background: #fff3ea;
  color: var(--orange);
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(255, 122, 45, 0.12);
}

.timeline-items {
  display: grid;
  gap: 12px;
}

.timeline-item {
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) minmax(260px, 1.4fr) minmax(90px, 0.35fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  background: var(--white);
}

.timeline-item span {
  color: var(--navy);
  font-weight: 900;
  line-height: 1.35;
}

.timeline-item p {
  margin: 0;
  color: var(--gray-700);
  font-size: 0.94rem;
  line-height: 1.55;
}

.timeline-item small {
  justify-self: start;
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--gray-50);
  color: var(--gray-700);
  font-weight: 800;
}

.client-partner-board {
  display: grid;
  gap: 18px;
}

.logo-group {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.logo-group-head {
  display: flex;
  gap: 16px;
  align-items: baseline;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--gray-100);
  background: linear-gradient(180deg, var(--white), var(--gray-50));
}

.logo-group-head span {
  color: var(--navy);
  font-weight: 900;
}

.logo-group-head p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.92rem;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.logo-strip .client-logo-card {
  min-height: 132px;
  border-width: 0 1px 0 0;
  border-radius: 0;
  box-shadow: none;
}

.logo-strip .client-logo-card:last-child {
  border-right: 0;
}

.partner-brand-board {
  overflow: hidden;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.partner-category {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 2.2fr);
  gap: 22px;
  align-items: center;
  padding: 22px;
  border-top: 1px solid var(--gray-100);
}

.partner-category h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.35;
}

.brand-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.brand-chip {
  display: inline-grid;
  min-width: 92px;
  min-height: 42px;
  place-items: center;
  padding: 8px 14px;
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--white), var(--gray-50));
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 10px 22px rgba(7, 23, 47, 0.04);
}

.brand-chip:nth-child(3n + 1) {
  color: var(--blue);
}

.brand-chip:nth-child(3n + 2) {
  color: var(--orange);
}

.brand-chip:nth-child(3n) {
  color: var(--gray-800);
}

.cta {
  padding: 92px 0;
  background: var(--navy);
  color: var(--white);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 360px);
  gap: 42px;
  align-items: center;
}

.cta h2 {
  color: var(--white);
  max-width: 760px;
}

.cta p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.72);
}

.cta-contact {
  display: grid;
  gap: 14px;
}

.cta-contact .btn {
  width: 100%;
}

.contact-detail {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.contact-detail strong,
.contact-detail a,
.contact-detail span {
  display: block;
}

.contact-detail strong {
  margin-bottom: 5px;
  color: var(--orange-2);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  line-height: 1.55;
}

.footer {
  background: #061124;
  color: rgba(255, 255, 255, 0.72);
  padding: 72px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 44px;
}

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

.footer .brand-mark {
  border-color: rgba(255, 255, 255, 0.12);
}

.footer .brand small,
.footer p {
  color: rgba(255, 255, 255, 0.64);
}

.footer h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 0.95rem;
}

.footer a,
.footer span {
  display: block;
  margin-bottom: 10px;
}

.footer a:hover {
  color: var(--orange-2);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 16px 34px rgba(7, 23, 47, 0.26);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 76px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--gray-100);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 13px 10px;
  }

  .nav-links a::after {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(7, 23, 47, 0.96), rgba(7, 23, 47, 0.76));
  }

  .hero-content {
    padding: 70px 0 44px;
  }

  .hero-metrics,
  .service-grid,
  .project-grid,
  .about-layout,
  .split,
  .split-reverse,
  .cta-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    margin-top: 36px;
  }

  .business-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .business-item {
    grid-column: span 1;
  }

  .portfolio-logo-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-list-head {
    display: none;
  }

  .portfolio-list-title {
    display: grid;
    gap: 6px;
  }

  .portfolio-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .timeline-list {
    padding: 8px 16px 18px;
  }

  .timeline-list::before {
    left: 52px;
  }

  .timeline-year {
    grid-template-columns: 76px 1fr;
    gap: 14px;
  }

  .timeline-marker {
    width: 66px;
    height: 40px;
    top: 82px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .partner-category {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .logo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-strip .client-logo-card {
    min-height: 118px;
  }

  .logo-group-head {
    display: grid;
    gap: 4px;
  }

  .logo-strip .client-logo-card {
    border-bottom: 1px solid var(--gray-100);
  }

  .section {
    padding: 76px 0;
  }

  .about-layout {
    gap: 34px;
  }

  .about-portrait {
    min-height: 460px;
  }

  .about-portrait img {
    min-height: 460px;
    object-position: center 12%;
  }

  .about-panel {
    padding-left: 22px;
  }
}

@media (max-width: 560px) {
  .navbar {
    min-height: 70px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .nav-links {
    top: 70px;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .hero p {
    font-size: 1rem;
  }

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

  .hero-metrics {
    gap: 0;
    grid-template-columns: 1fr;
  }

  .business-grid,
  .portfolio-logo-showcase,
  .logo-strip {
    grid-template-columns: 1fr;
  }

  .section-head {
    margin-bottom: 30px;
  }

  .section h2,
  .cta h2 {
    font-size: 2rem;
  }

  .brand-chip {
    min-width: calc(50% - 5px);
  }

  .timeline-list::before {
    display: none;
  }

  .timeline-year {
    grid-template-columns: 1fr;
  }

  .timeline-marker {
    position: static;
  }

  .service-card,
  .project-card,
  .business-item {
    min-height: auto;
  }

  .about-portrait {
    min-height: 420px;
  }

  .about-portrait img {
    min-height: 420px;
  }

  .portrait-caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .footer-bottom {
    display: grid;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }
}
