﻿:root {
  --orange: #f36f21;
  --orange-dark: #b94712;
  --orange-soft: #fff1e7;
  --gold: #f6b84b;
  --cream: #fffaf2;
  --white: #ffffff;
  --ink: #14171f;
  --ink-soft: #242936;
  --muted: #657084;
  --teal: #138c7f;
  --line: #e9edf3;
  --line-warm: #f1dccb;
  --shadow: 0 18px 48px rgba(20, 23, 31, 0.08);
  --shadow-soft: 0 10px 28px rgba(20, 23, 31, 0.06);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  color: var(--ink);
  background: #fbfcfe;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(20, 23, 31, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(20, 23, 31, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, #fbfcfe 0%, #fffaf4 56%, #ffffff 100%);
  background-size: 72px 72px, 72px 72px, auto;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(20, 23, 31, 0.08);
  backdrop-filter: blur(18px);
}

.navbar {
  width: min(1180px, calc(100% - 48px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-logo-wrap {
  width: 142px;
  height: 54px;
  display: flex;
  align-items: center;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  flex: 0 0 auto;
}

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

.brand-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--gold));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 6px;
  border: 1px solid rgba(20, 23, 31, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.nav-links a {
  padding: 9px 13px;
  border-radius: 999px;
  color: #4b5565;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: var(--orange-soft);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(20, 23, 31, 0.1);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.section-orange {
  position: relative;
  overflow: hidden;
}

.grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.42) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.42) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}

.hero {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  padding: 94px 0 112px;
  background:
    linear-gradient(90deg, rgba(20, 23, 31, 0.96) 0%, rgba(20, 23, 31, 0.9) 42%, rgba(20, 23, 31, 0.42) 72%, rgba(20, 23, 31, 0.16) 100%),
    linear-gradient(135deg, rgba(243, 111, 33, 0.92), rgba(246, 184, 75, 0.55));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 75%, #fbfcfe 100%);
  pointer-events: none;
}

.hero-inner,
.section,
.cta-inner,
.footer-grid {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 610px;
  display: flex;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 760px;
}

.hero-visual {
  position: absolute;
  right: -28px;
  top: 50%;
  width: min(520px, 44vw);
  transform: translateY(-50%);
  opacity: 0.9;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--orange-dark);
  background: var(--orange-soft);
  border: 1px solid rgba(179, 71, 18, 0.14);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.eyebrow {
  color: #fff4ea;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.section-kicker.light {
  color: #fff4ea;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
}

.arrow-icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(54px, 9vw, 118px);
  line-height: 0.92;
  font-weight: 800;
}

h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(32px, 4.7vw, 56px);
  line-height: 1.05;
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.28;
}

.hero-subtitle {
  max-width: 790px;
  color: var(--white);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.18;
  font-weight: 800;
}

.hero-text {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

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

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

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

.btn-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 18px 34px rgba(243, 111, 33, 0.3);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.btn-light {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.14);
}

.metric-card {
  position: absolute;
  display: grid;
  gap: 2px;
  min-width: 150px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.16);
}

.metric-card strong {
  color: var(--orange-dark);
  font-size: 24px;
}

.metric-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.metric-card-top {
  top: 22px;
  right: -18px;
}

.metric-card-bottom {
  left: -18px;
  bottom: 24px;
}

.section {
  padding: 104px 0;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading p,
.intro-text p,
.portfolio-layout p,
.vision-card p,
.cta-inner p {
  color: var(--muted);
  font-size: 17px;
}

.intro-layout,
.portfolio-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

.intro-text {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.growth-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}

.growth-strip span {
  padding: 8px 12px;
  border: 1px solid rgba(179, 71, 18, 0.14);
  border-radius: 999px;
  color: var(--orange-dark);
  background: var(--orange-soft);
  font-size: 12px;
  font-weight: 800;
}

.growth-strip i {
  width: 24px;
  height: 1px;
  background: var(--line-warm);
}

.highlight-grid,
.mission-grid,
.service-grid,
.why-grid,
.logo-grid {
  display: grid;
  gap: 18px;
}

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

.feature-card,
.mission-card,
.service-card,
.portfolio-panel,
.vision-card,
.timeline article,
.why-grid div,
.logo-grid div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.feature-card,
.service-card,
.timeline article,
.why-grid div {
  padding: 26px;
}

.feature-card p,
.mission-card li,
.service-card p,
.timeline p {
  color: var(--muted);
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border: 1px solid rgba(243, 111, 33, 0.22);
  border-radius: 8px;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: 800;
}

.soft-section {
  width: 100%;
  max-width: none;
  background: linear-gradient(180deg, #fffaf4 0%, #ffffff 100%);
}

.soft-section > .section-heading,
.soft-section > .vision-card,
.soft-section > .mission-grid,
.soft-section > .logo-grid,
.soft-section > .client-showcase,
.soft-section > .client-proof-layout,
.soft-section > .client-directory {
  width: min(1180px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

.vision-card {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 28px;
  align-items: center;
  padding: 38px;
  margin-bottom: 70px;
  overflow: hidden;
}

.vision-visual {
  position: relative;
  min-height: 238px;
  border: 1px solid rgba(20, 23, 31, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(20, 23, 31, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(20, 23, 31, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, #fff7ee, #eefaf8);
  background-size: 28px 28px, 28px 28px, auto;
}

.chart-bar {
  position: absolute;
  bottom: 38px;
  width: 42px;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, var(--gold), var(--orange));
}

.bar-one {
  left: 54px;
  height: 72px;
}

.bar-two {
  left: 120px;
  height: 116px;
}

.bar-three {
  left: 188px;
  height: 156px;
}

.chart-arrow {
  position: absolute;
  right: 42px;
  top: 30px;
  color: var(--orange-dark);
  font-size: 72px;
  font-weight: 800;
}

.community-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 7px rgba(19, 140, 127, 0.12);
}

.dot-one {
  left: 36px;
  top: 34px;
}

.dot-two {
  right: 42px;
  bottom: 42px;
}

.dot-three {
  left: 158px;
  top: 42px;
}

.mission-heading {
  margin-bottom: 32px;
}

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

.mission-card {
  padding: 30px;
}

.mission-number,
.service-card span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--orange-dark);
  font-weight: 800;
}

.mission-card ul {
  padding-left: 18px;
  margin-bottom: 0;
}

.portfolio-layout {
  grid-template-columns: 1fr 400px;
  align-items: center;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.pill-list span {
  padding: 10px 14px;
  border: 1px solid var(--line-warm);
  border-radius: 999px;
  color: #70401d;
  background: #fff8f0;
  font-weight: 800;
  font-size: 13px;
}


.portfolio-showcase,
.client-showcase,
.client-proof-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.portfolio-showcase::before,
.client-showcase::before,
.client-proof-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
  z-index: 1;
}

.portfolio-showcase img,
.client-showcase img,
.client-proof-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-showcase {
  min-height: 430px;
}

.client-showcase {
  width: min(980px, 100%);
  margin: 0 auto;
  background: #f36f21;
}

.client-showcase img {
  aspect-ratio: 783 / 385;
}


.client-directory {
  display: grid;
  gap: 22px;
}

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

.person-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.person-card img {
  width: 100%;
  aspect-ratio: 110 / 160;
  object-fit: cover;
  filter: saturate(0.92);
}

.person-card span {
  display: block;
  min-height: 48px;
  padding: 11px 10px 12px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}

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

.partner-logo-grid div {
  min-height: 86px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(135deg, #1a1f2b, #f36f21);
  box-shadow: var(--shadow-soft);
}

.partner-logo-grid img {
  max-width: 82%;
  max-height: 58px;
  object-fit: contain;
}

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

.corporate-logo-card {
  min-height: 138px;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 22px 18px 16px;
  overflow: hidden;
  border: 1px solid rgba(19, 28, 42, 0.09);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 244, 0.98));
  box-shadow: 0 18px 42px rgba(19, 28, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.corporate-logo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(243, 111, 33, 0.28);
  box-shadow: 0 24px 54px rgba(19, 28, 42, 0.12);
}

.corporate-logo-card img {
  width: 100%;
  max-width: 172px;
  max-height: 72px;
  object-fit: contain;
  justify-self: center;
}

.corporate-logo-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.logo-card-dark {
  background:
    radial-gradient(circle at 18% 8%, rgba(243, 111, 33, 0.28), transparent 34%),
    linear-gradient(135deg, #141923, #252b36);
  border-color: rgba(255, 255, 255, 0.1);
}

.logo-card-dark span {
  color: rgba(255, 255, 255, 0.78);
}
.client-proof-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 28px;
  align-items: center;
}

.client-proof-copy {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.proof-label {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
}

.client-proof-copy h3 {
  font-size: 26px;
  line-height: 1.18;
}

.client-proof-copy p {
  margin-bottom: 0;
  color: var(--muted);
}

.client-proof-card {
  background: #f36f21;
}

.client-proof-card img {
  aspect-ratio: 640 / 274;
}
.portfolio-panel {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.98)),
    linear-gradient(135deg, rgba(243, 111, 33, 0.22), rgba(19, 140, 127, 0.14));
}

.panel-header,
.mini-stats {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.panel-header span,
.sales-card span,
.sales-card small,
.mini-stats span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.sales-card {
  margin: 24px 0;
  padding: 26px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, #1f2530, #3a2d25 48%, var(--orange-dark));
}

.sales-card strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 52px;
  line-height: 1;
}

.sales-card span,
.sales-card small {
  color: rgba(255, 255, 255, 0.82);
}

.mini-stats div {
  flex: 1;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.mini-stats strong {
  display: block;
  color: var(--orange-dark);
  font-size: 26px;
}

.trust-text {
  margin: 34px 0 0;
  padding: 22px 26px;
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  color: #4b3a28;
  background: #fff8ef;
  font-weight: 800;
}

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

.logo-grid div {
  min-height: 108px;
  display: grid;
  place-items: center;
  color: #6d7280;
  background: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

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

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
}

.why-section {
  padding-top: 34px;
}

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

.why-grid div {
  color: #303744;
  background: var(--white);
  font-weight: 800;
}

.process-section {
  padding-top: 64px;
}

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

.timeline span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-weight: 800;
}

.cta-section {
  padding: 104px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(20, 23, 31, 0.94), rgba(20, 23, 31, 0.78)),
    linear-gradient(135deg, var(--orange), var(--gold));
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  text-align: center;
}

.cta-inner h2 {
  color: var(--white);
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.82);
}

.cta-inner small {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  padding: 56px 0 28px;
  color: #d8dde8;
  background: #11141b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  gap: 34px;
}

.footer-grid h3 {
  color: var(--white);
  font-size: 16px;
}

.footer-grid p {
  color: #aab2c1;
}

.footer-grid a:hover {
  color: var(--gold);
}

.copyright {
  width: min(1180px, calc(100% - 48px));
  margin: 30px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #8f98aa;
  font-size: 14px;
}

@media (max-width: 1060px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 82px;
    left: 24px;
    right: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(20, 23, 31, 0.1);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    border-radius: 8px;
  }

  .hero {
    min-height: auto;
    padding: 72px 0 84px;
  }

  .hero-inner {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-visual {
    position: relative;
    right: auto;
    top: auto;
    width: min(620px, 100%);
    transform: none;
  }

  .intro-layout,
  .portfolio-layout,
  .vision-card,
  .client-proof-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .people-grid,
  .partner-logo-grid,
  .corporate-logo-grid,
  .why-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .navbar,
  .hero-inner,
  .section,
  .cta-inner,
  .footer-grid,
  .copyright,
  .soft-section > .section-heading,
  .soft-section > .vision-card,
  .soft-section > .mission-grid,
  .soft-section > .logo-grid,
.soft-section > .client-showcase,
.soft-section > .client-proof-layout,
.soft-section > .client-directory {
    width: min(100% - 30px, 1180px);
  }

  .navbar {
    min-height: 74px;
  }

  .brand-logo-wrap {
    width: 124px;
    height: 48px;
  }

  .nav-links {
    top: 74px;
    left: 15px;
    right: 15px;
  }

  .hero {
    padding: 52px 0 66px;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 24px;
  }

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

  .section {
    padding: 74px 0;
  }

  .highlight-grid,
  .mission-grid,
  .service-grid,
  .why-grid,
  .timeline,
  .logo-grid,
  .corporate-logo-grid {
    grid-template-columns: 1fr;
  }

  .vision-card,
  .intro-text,
  .portfolio-panel,
  .mission-card,
  .feature-card,
  .service-card,
  .timeline article,
  .why-grid div {
    padding: 24px;
  }

  .vision-visual {
    min-height: 198px;
  }

  .metric-card {
    position: static;
    margin-top: 12px;
  }

  .mini-stats {
    flex-direction: column;
  }

  .sales-card strong {
    font-size: 42px;
  }
}














