:root {
  --navy: #061b4e;
  --navy-2: #0b2a68;
  --blue: #123a82;
  --saffron: #fc8122;
  --saffron-2: #f1c46b;
  --cream: #fbf7ef;
  --cream-2: #f5efe2;
  --white: #ffffff;
  --ink: #14213d;
  --muted: #5e6a80;
  --line: #e6e9ef;
  --shadow: 0 24px 70px rgba(6, 27, 78, 0.12);
  --shadow-soft: 0 14px 38px rgba(6, 27, 78, 0.09);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}
.narrow {
  max-width: 850px;
}
.skip-link {
  position: absolute;
  left: 20px;
  top: -60px;
  background: var(--navy);
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus {
  top: 14px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(6, 27, 78, 0.08);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.site-header.scrolled {
  box-shadow: 0 14px 40px rgba(6, 27, 78, 0.12);
}
.top-bar {
  background: #fc8122;
  color: #eff4ff;
  font-size: 0.88rem;
}
.top-bar-inner {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  min-height: 38px;
  align-items: center;
}
.top-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.95;
  transition: opacity 0.2s ease;
}
.top-link:hover {
  opacity: 1;
  color: white;
}
.top-link svg,
.btn svg,
.text-link svg,
.office-strip svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}
.main-nav {
  background: var(--white);
}
.nav-inner {
  display: flex;
  align-items: center;
  min-height: 82px;
  gap: 26px;
}
.brand {
  display: flex;
  align-items: center;
  margin-right: auto;
}
.brand img {
  width: 250px;
  height: auto;
  object-fit: contain;
}
.desktop-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  position: relative;
  padding: 12px 14px;
  border-radius: 999px;
  color: #273855;
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-link:hover,
.nav-link.active {
  background: var(--cream);
  color: var(--navy);
}
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 7px;
  height: 2px;
  background: var(--saffron);
  border-radius: 999px;
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 6px 0;
  border-radius: 999px;
  transition: transform 0.28s ease, opacity 0.2s ease;
}
.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.mobile-menu {
  display: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
  border-top: 1px solid var(--line);
  background: white;
}
.mobile-menu.open {
  max-height: 420px;
}
.mobile-link {
  display: block;
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}
.mobile-link.active {
  color: var(--saffron);
}
.mobile-cta {
  margin: 16px 22px 22px;
  justify-content: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease,
    color 0.22s ease, border-color 0.22s ease;
  min-height: 48px;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: #fc8122;
  color: white;
  box-shadow: 0 14px 30px rgba(6, 27, 78, 0.2);
}
.btn-primary:hover {
  box-shadow: 0 18px 44px rgba(6, 27, 78, 0.28);
}
.btn-secondary {
  background: var(--saffron);
  color: var(--navy);
  box-shadow: 0 14px 30px rgba(214, 154, 45, 0.22);
}
.btn-outline {
  border-color: #c9d2e4;
  color: var(--navy);
  background: white;
}
.btn-outline:hover {
  border-color: var(--navy);
  background: var(--cream);
}
.btn-light {
  background: white;
  color: var(--navy);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.15);
}
.btn-ghost-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: white;
  background: rgba(255, 255, 255, 0.08);
}
.full-btn {
  width: 100%;
}
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(
      circle at top left,
      rgba(214, 154, 45, 0.22),
      transparent 32%
    ),
    linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}
.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -42% auto;
  width: 52vw;
  height: 52vw;
  background: radial-gradient(circle, rgba(6, 27, 78, 0.09), transparent 68%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 58px;
  align-items: center;
  min-height: calc(100vh - 120px);
  padding-block: 92px;
}
.hero-copy h1,
.page-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(2.65rem, 5vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
  color: var(--navy);
}
.hero-copy h1 span,
.page-hero h1 span {
  color: var(--saffron);
}
.hero-copy p,
.page-hero p {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 650px;
  margin: 0 0 30px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--saffron);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
}
.section-kicker::before {
  content: "";
  width: 32px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
}
.section-kicker.light {
  color: var(--saffron-2);
}
.trust-row,
.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.trust-row div,
.metric-grid div {
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(6, 27, 78, 0.08);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 32px rgba(6, 27, 78, 0.06);
}
.trust-row strong,
.metric-grid strong {
  display: block;
  color: var(--navy);
  font-size: 1.65rem;
  line-height: 1;
}
.trust-row span,
.metric-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 6px;
}
.hero-media {
  position: relative;
}
.hero-media img,
.stack-image img {
  border-radius: 32px;
  box-shadow: var(--shadow);
  object-fit: cover;
}
.hero-media img {
  aspect-ratio: 4/3;
  width: 100%;
}
.floating-note {
  position: absolute;
  left: -28px;
  bottom: 28px;
  display: grid;
  gap: 2px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 18px 20px;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}
.floating-note strong {
  color: var(--navy);
}
.floating-note span {
  color: var(--muted);
  font-size: 0.92rem;
}
.section {
  padding: 96px 0;
}
.muted-section {
  background: var(--cream);
}
.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}
.section-heading.center {
  text-align: center;
  margin-inline: auto;
}
.section-heading h2,
.split-grid h2,
.detail-copy h2,
.contact-panel h2,
.contact-form h2,
.map-card h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: var(--navy);
}
.section-heading p,
.split-grid p,
.detail-copy p,
.contact-panel p,
.map-card p {
  color: var(--muted);
  margin: 0 0 18px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.service-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(6, 27, 78, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease,
    border-color 0.28s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(214, 154, 45, 0.42);
}
.service-image {
  height: 220px;
  overflow: hidden;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-image img {
  transform: scale(1.05);
}
.service-content {
  padding: 28px;
}
.service-content h3,
.region-grid h3,
.process-grid h3,
.value-grid h3,
.timeline h3,
.contact-cards h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.18;
}
.service-content p {
  color: var(--muted);
  margin: 0 0 18px;
}
.check-list {
  list-style: none;
  margin: 20px 0 28px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.check-list.compact {
  gap: 8px;
  margin: 18px 0;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #273855;
}
.check-list svg,
.feature-list svg {
  width: 18px;
  height: 18px;
  stroke: var(--saffron);
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 3px;
  flex: 0 0 auto;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
}
.text-link:hover {
  color: var(--saffron);
}
.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.stack-image {
  position: relative;
}
.stack-image img {
  width: 100%;
  max-height: 580px;
}
.about-preview .stack-image img {
  height: 560px;
  object-fit: cover;
  object-position: center top;
}
.experience-badge {
  position: absolute;
  right: -20px;
  bottom: 28px;
  background: var(--navy);
  color: white;
  border: 6px solid white;
  border-radius: 24px;
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
}
.experience-badge span {
  display: block;
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1;
  color: var(--saffron-2);
}
.experience-badge small {
  display: block;
  max-width: 110px;
  line-height: 1.25;
}
.metric-grid {
  margin: 28px 0;
}
.region-grid,
.process-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.region-grid article,
.process-grid article,
.value-grid article,
.timeline article,
.contact-cards article,
.office-card,
.quote-card,
.map-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 12px 30px rgba(6, 27, 78, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.region-grid article:hover,
.process-grid article:hover,
.value-grid article:hover,
.contact-cards article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}
.region-grid article span {
  display: inline-block;
  color: var(--saffron);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 8px;
}
.office-strip {
  margin-top: 26px;
  background: var(--navy);
  color: white;
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cta-section {
  padding: 86px 0;
  background: linear-gradient(135deg, var(--navy), #0b357d);
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -10%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(
    circle,
    rgba(214, 154, 45, 0.26),
    transparent 65%
  );
}
.compact-cta {
  padding: 72px 0;
}
.cta-box {
  position: relative;
  text-align: center;
  max-width: 880px;
}
.cta-box h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}
.cta-box p {
  color: #dfe8ff;
  font-size: 1.1rem;
  margin: 0 auto 26px;
  max-width: 680px;
}
.cta-phone {
  display: inline-flex;
  margin-left: 14px;
  color: var(--saffron-2);
  font-weight: 900;
}
.page-hero {
  position: relative;
  padding: 88px 0 74px;
  background: radial-gradient(
      circle at top left,
      rgba(214, 154, 45, 0.18),
      transparent 34%
    ),
    linear-gradient(180deg, var(--cream), #fff);
}
.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.92rem;
  margin-bottom: 28px;
  color: var(--muted);
}
.breadcrumb a {
  font-weight: 800;
  color: var(--navy);
}
.detail-wrap {
  padding-top: 46px;
}
.service-detail {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  align-items: center;
  padding: 54px 0;
  border-bottom: 1px solid var(--line);
}
.service-detail:last-child {
  border-bottom: 0;
}
.service-detail.reverse .detail-image {
  order: 2;
}
.detail-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.lead-line {
  font-size: 1.18rem;
  color: var(--navy) !important;
  font-weight: 800;
}
.quote-card {
  margin: 24px 0;
  color: var(--navy);
  font-weight: 800;
  background: var(--cream);
}
.feature-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.feature-list li {
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.feature-list strong {
  display: block;
  color: var(--navy);
  line-height: 1.25;
}
.feature-list span {
  display: block;
  color: var(--muted);
  font-size: 0.93rem;
  margin-top: 5px;
}
.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.process-grid strong {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--saffron);
  margin-bottom: 16px;
}
.founder-section .stack-image img {
  height: 600px;
  object-fit: cover;
  object-position: center top;
}
.icon-dot {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--cream);
  color: var(--saffron);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.icon-dot svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}
.timeline article span {
  display: inline-flex;
  color: var(--saffron);
  font-weight: 900;
  margin-bottom: 8px;
}
.presence-section .stack-image img {
  height: 520px;
  object-fit: cover;
}
.office-card {
  margin-top: 24px;
}
.office-card strong {
  display: block;
  color: var(--navy);
  margin-bottom: 8px;
}
.office-card a {
  color: var(--saffron);
  font-weight: 900;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}
.contact-panel,
.contact-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-soft);
}
.contact-cards {
  display: grid;
  gap: 16px;
}
.contact-cards article {
  padding: 22px;
}
.contact-cards a {
  color: var(--navy);
  font-weight: 800;
}
.served-box {
  margin-top: 18px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.served-box strong {
  flex: 1 0 100%;
  color: var(--navy);
}
.served-box span {
  display: inline-flex;
  background: white;
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  color: var(--navy);
}
.contact-form {
  position: relative;
}
.form-row {
  margin-bottom: 18px;
}
.form-row label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-row label span {
  color: #b83232;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid #d8deea;
  border-radius: 14px;
  padding: 13px 15px;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(18, 58, 130, 0.1);
}
.form-row.has-error input,
.form-row.has-error textarea {
  border-color: #c02b2b;
}
.error-message {
  display: block;
  min-height: 18px;
  color: #b83232;
  margin-top: 5px;
  font-weight: 700;
  font-size: 0.85rem;
}
.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}
.form-note.success {
  color: #107b45;
  font-weight: 800;
}
.form-note.error {
  color: #b83232;
  font-weight: 800;
}
.map-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  background: linear-gradient(135deg, #fff, var(--cream));
}
.site-footer {
  background: #061638;
  color: #d8e2f5;
  padding: 70px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.8fr 1.2fr;
  gap: 36px;
}
.footer-brand img {
  width: 190px;
  height: 70px;
  object-fit: contain;
  background: white;
  border-radius: 10px;
  padding: 8px;
  margin-bottom: 18px;
}
.footer-brand p {
  max-width: 340px;
  color: #b8c5dd;
}
.site-footer h3 {
  color: white;
  margin: 0 0 14px;
  font-size: 1rem;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}
.site-footer a {
  color: #d8e2f5;
  transition: color 0.2s ease;
}
.site-footer a:hover {
  color: var(--saffron-2);
}
.footer-actions {
  display: grid;
  gap: 8px;
}
.site-footer address {
  font-style: normal;
  color: #b8c5dd;
}
.footer-bottom {
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #aebbd6;
  font-size: 0.9rem;
}
.footer-bottom p {
  margin: 0;
}
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1001;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1f9d57;
  color: white;
  border-radius: 999px;
  padding: 12px 16px;
  box-shadow: 0 18px 40px rgba(31, 157, 87, 0.3);
  font-weight: 900;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(31, 157, 87, 0.4);
}
.whatsapp-float strong {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 88px;
  z-index: 1000;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: var(--navy);
  color: white;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  cursor: pointer;
  font-size: 1.2rem;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
[data-animate] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
[data-animate="fade-up"] {
  transform: translateY(32px);
}
[data-animate="fade-left"] {
  transform: translateX(42px);
}
[data-animate="fade-right"] {
  transform: translateX(-42px);
}
[data-animate].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .split-grid,
  .service-detail,
  .contact-grid {
    gap: 36px;
  }
  .desktop-menu,
  .nav-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .mobile-menu {
    display: block;
  }
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-media {
    max-width: 720px;
  }
  .floating-note {
    left: 22px;
  }
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 780px) {
  .container {
    width: min(100% - 28px, var(--container));
  }
  .top-bar-inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding: 8px 0;
  }
  .nav-inner {
    min-height: 70px;
  }
  .brand img {
    width: 172px;
  }
  .hero-grid {
    padding-block: 58px;
    min-height: auto;
  }
  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.4rem);
    letter-spacing: -0.05em;
  }
  .hero-copy p,
  .page-hero p {
    font-size: 1.02rem;
  }
  .trust-row,
  .metric-grid,
  .service-grid,
  .region-grid,
  .value-grid,
  .timeline,
  .feature-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 68px 0;
  }
  .page-hero {
    padding: 62px 0 52px;
  }
  .service-detail,
  .service-detail.reverse {
    grid-template-columns: 1fr;
    padding: 36px 0;
  }
  .service-detail.reverse .detail-image {
    order: 0;
  }
  .detail-image img,
  .presence-section .stack-image img,
  .founder-section .stack-image img,
  .about-preview .stack-image img {
    height: auto;
    max-height: none;
  }
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-panel,
  .contact-form {
    padding: 24px;
  }
  .map-card {
    display: grid;
  }
  .footer-bottom {
    display: grid;
  }
  .cta-phone {
    display: block;
    margin: 16px 0 0;
  }
  .office-strip {
    align-items: flex-start;
  }
  .whatsapp-float span {
    display: none;
  }
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    padding: 12px;
  }
  .back-to-top {
    right: 16px;
    bottom: 78px;
  }
  .floating-note,
  .experience-badge {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 14px 0 0;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    display: grid;
  }
  .btn {
    width: 100%;
  }
}
@media (min-width: 1380px) {
  :root {
    --container: 1240px;
  }
  .hero-grid {
    min-height: 760px;
  }
  .hero-copy h1 {
    font-size: 3.1rem;
  }
}
